CS153/hw6/hw5programs/tc_error_struct_proj.oat

13 lines
126 B
Text
Raw Normal View History

struct T {
int f
}
struct G {
int g
}
int program(int argc, string[] argv) {
var x = new T { f = 3 };
return x.g;
}