Alessandro Bonazzi
e075990ed3
Files correlati : Commento : Aggiunto il preprocessore c++ mcpp per sostituire il compilatore nella compilazione delle maschere.
17 lines
250 B
Perl
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
|
|
|