void f(){
	int a[] = {0,1};
	// invalid syntax but should not segfault
	int a = {0,1};
}
