aboutsummaryrefslogtreecommitdiff
path: root/test/generic.c
blob: d04bc900ca6147b030fe463dabdfc50a5667770c (plain)
1
2
3
4
5
6
int x = _Generic(123,
	const int: 1,
	unsigned: 2,
	int: 3,
	int *: 4
);