[SandboxVec][Utils] Implement Utils::verifyFunction() (#124356)
[llvm-project.git] / clang / test / Modules / Inputs / macro-ambiguity / a / system / a_system.h
blobf9f32879ae91f8a1bd846423c0ec25e4798aaab8
1 #ifndef A_SYSTEM_H
2 #define A_SYSTEM_H
4 // FIXME: We have to use this to mark the header as a system header in
5 // a module because header search didn't actually occur and so we can't have
6 // found the header via system header search, even though when we map to this
7 // header and load the module we will have mapped to the header by finding it
8 // via system header search.
9 #pragma GCC system_header
11 #define FOO1_SYSTEM(x) x + x
12 #define BAR1_SYSTEM(x) x + x
13 #define BAZ1_SYSTEM(x) x + x
15 #endif