xref: /aosp_15_r20/external/mesa3d/src/compiler/glsl/glcpp/tests/101-macros-used-twice.c (revision 6104692788411f58d303aa86923a9ff6ecaded22)
1 #define object 1
2 #define function(x) 1
3 
4 #if object
5 once
6 #endif
7 #if object
8 twice
9 #endif
10 
11 #if function(0)
12 once
13 #endif
14 #if function(0)
15 once again
16 #endif
17