xref: /aosp_15_r20/external/clang/test/PCH/Inputs/chain-macro-override2.h (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 #define f() g()
2 #undef g
3 #undef h
4 #define h() g()
5 int x;
6 #undef h2
7 
8 int h3();
9