1
0
mirror of https://github.com/mirror/tinycc.git synced 2025-02-14 07:10:07 +08:00
tinycc/tests/tests2/71_macro_empty_arg.c

10 lines
133 B
C
Raw Normal View History

#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;
}