CS153/hw5/hw5programs/tc_error_struct4.oat

10 lines
117 B
Text
Raw Normal View History

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