xref: /llvm-project/clang/test/Misc/Inputs/include.h (revision 9e52db182794d87bb8527dda313afd1ac491ab11)
1 #define EQUALS(a,b) a == b
2 
3 // It's important for sloc_usage.cpp that this file does not have proper
4 // include guards.
5 #ifndef FOO_DEFINED
6 #define FOO_DEFINED
foo(int x)7 int foo(int x) { return x; }
8 #endif
9