CS153/hw6/hw5programs/tc_struct_field_err.oat

23 lines
149 B
Text
Raw Normal View History

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