xref: /llvm-project/clang/test/Modules/Inputs/explicit-build/c.h (revision e842a47452223f9f3b683e0f7f9cccb48192cbb6)
1 #include "b.h"
2 
3 #if !__building_module(c)
4 #error "should only get here when building module c"
5 #endif
6 
7 const int c = 3;
8