Alessandro Bonazzi
e075990ed3
Files correlati : Commento : Aggiunto il preprocessore c++ mcpp per sostituire il compilatore nella compilazione delle maschere.
11 lines
253 B
Raku
11 lines
253 B
Raku
/* e_31_3.t: Macro call in control line should complete in the line. */
|
|
|
|
#define glue( a, b) a ## b
|
|
#define str( s) # s
|
|
#define xstr( s) str( s)
|
|
|
|
/* 31.3: Unterminated macro call. */
|
|
#include xstr( glue( header,
|
|
.h))
|
|
|