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
305 B
C

/* e_27_7.c: Error of rescanning. */
#define sub( x, y) (x - y)
/* 27.7: */
#define TWO_TOKENS a,b
#define SUB( x, y) sub( x, y)
/* Too many arguments error while rescanning after once replaced to:
sub( a,b, 1); */
SUB( TWO_TOKENS, 1);
main( void)
{
return 0;
}