lang-bootstrap/05/tcc-final/tests/tests2/71_macro_empty_arg.c
2025-04-18 12:38:54 +01:00

9 lines
133 B
C

#include <stdio.h>
#define T(a,b,c) a b c
int main(void)
{
printf("%d", T(1,+,2) T(+,,) T(,2,*) T(,7,) T(,,));
return 0;
}