CS153/hw6/hw5programs/tc_recursive_struct_err.oat

13 lines
84 B
Text
Raw Normal View History

struct A{
B x
}
struct B {
A x
}
void f() {
var x = A null;
x = B null;
}