bolt/deps/llvm-18.1.8/clang/test/Preprocessor/multiple-inclusion-opt.h
2025-02-14 19:21:04 +01:00

18 lines
276 B
C

# // null directive and comments before include guard
#ifndef MULTIPLE_INCLUSION_OPT
int foo();
// The position of the define should not matter
#define MULTIPLE_INCLUSION_OPT
int bar();
#endif
#
#
/* Two null directives
and a multiline comment
after the #endif */