lang-bootstrap/05/tcc-0.9.27/tests/tests2/71_macro_empty_arg.c

10 lines
133 B
C
Raw Permalink Normal View History

2022-02-18 12:36:57 -05:00
#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;
}