101-macros-used-twice.c revision 01e04c3f
1#define object 1
2#define function(x) 1
3
4#if object
5once
6#endif
7#if object
8twice
9#endif
10
11#if function(0)
12once
13#endif
14#if function(0)
15once again
16#endif
17