aboutsummaryrefslogtreecommitdiff
path: root/test/cast-vm.c
blob: 6901e73049854f155399048dc00b8f96ad38bd04 (plain)
1
2
3
4
5
6
int main(void) {
	int l = 0;
	(int (*)[++l])0;
	(int (*(*)(void))[++l])0;
	return l != 2;
}