Clang Project
clang_source_code
/
test
/
Lexer
/
Inputs
/
bad-header-guard-defined.h
1
#if !defined(foo)
2
#define goo
3
int n;
4
#endif
5