summaryrefslogtreecommitdiff
path: root/regress/usr.bin/pcc/ccom/mustpass0000.c
blob: e7ff1688dfbce0c26803af1915e89a14cf7d2eeb (plain)
1
2
3
4
5
6
7
8
9
10
typedef int a;
typedef int b;

int
main(void)
{
	enum a { a = 1, b = a + 2, c = a + b + 3 };

	return 0;
}