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

/* e_25_6.c: Macro arguments are pre-expanded separately. */
/* { dg-do preprocess } */
#define sub( x, y) (x - y)
/* 25.6: */
#define head sub(
#define body(x,y) x,y
#define tail )
#define head_body_tail( a, b, c) a b c
/* "head" is once replaced to "sub(", then rescanning of "sub(" causes an
uncompleted macro call. Expansion of an argument should complete
within the argument. */
head_body_tail( head, body(a,b), tail);
/* { dg-error "unterminated argument list| (U|u)nterminated macro call" "" { target *-*-* } 15 } */