CS153/hw6/hw5programs/tc_error_struct.oat

10 lines
130 B
Text
Raw Normal View History

struct S {
int f1;
int f2
}
int[] program(int argc, string[] argv) {
var x = new S { f1 = true; f2 = 3 };
return x.f1;
}