aboutsummaryrefslogtreecommitdiff
path: root/test/const-expr-cast.c
blob: 10a3eacfa268b865952bbb9bbc6b4538a7c069aa (plain)
1
2
3
4
5
6
7
enum {
	A = (unsigned char)0x321,
	B = (short)-2147438112,
	C = 0x80000003 * 2,
};

int a = A, b = B, c = C;