Alessandro Bonazzi e075990ed3 Patch level : 12.0 no-patch
Files correlati     :
Commento            :

Aggiunto il preprocessore c++ mcpp per sostituire il compilatore nella compilazione delle maschere.
2020-11-28 16:24:08 +01:00

18 lines
241 B
C

/* e_29_3.c: #undef errors. */
/* 29.3: Not an identifier. */
#undef "string"
#undef 123
/* 29.4: Excessive token sequence. */
#undef MACRO_0 Junk
/* 29.5: No argument. */
#undef
main( void)
{
return 0;
}