khanat-opennel-code/code/nel/tools/nel_unit_test/ut_misc_files/cfg_with_error.cfg

23 lines
312 B
INI
Raw Normal View History

2010-05-06 00:08:41 +00:00
// In this cfg, we introduce an error in a line after define and if clause
#define FOO
#define BAR
#ifdef FOO
// nothing
#endif
#ifndef BAR
// nothing
#endif
// Here is the offending line, at line 18
ABadVar iable = "foo";
// Some additionnal garbase lines
AGoodVar = "bar";