16 lines
234 B
C
Raw Normal View History

/* e_16.c: Trailing junk of #else, #endif. */
/* 16.1: Trailing junk of #else. */
#define MACRO_0 0
#if MACRO_0
#else MACRO_0
/* 16.2: Trailing junk of #endif. */
#endif MACRO_0
main( void)
{
return 0;
}