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

17 lines
250 B
Perl

/* e_15_3.t: #ifdef, #ifndef syntax errors. */
/* 15.3: Not an identifier. */
#ifdef "string"
#endif
#ifdef 123
#endif
/* 15.4: Excessive token sequence. */
#ifdef MACRO Junk
#endif
/* 15.5: No argument. */
#ifndef
#endif