aboutsummaryrefslogtreecommitdiff
path: root/test/typeof.c
blob: fe4ec6d6573d50cd8eb73caa64765c6dac850a8b (plain)
1
2
3
4
5
6
7
8
9
int f(char *);
typeof(f) f, g;

typeof(g(0)) x;
int x;

typedef int *t;
const typeof(t) y;
int *const y;