CS153/hw5/hw5programs/tc_array_err.oat

15 lines
113 B
Text
Raw Normal View History

struct A {
int x
}
struct B {
int x;
int y
}
int f() {
var x = A[] null;
x = B[] null;
return 2;
}