khanat-opennel-code/code/nel/tools/nel_unit_test/ut_misc_files/cfg_with_error.cfg
2015-12-13 21:04:37 +02:00

22 lines
312 B
INI

// 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";