CS153/hw5/hw5programs/tc_error_func_assign.oat

12 lines
103 B
Text
Raw Normal View History

int f() {
return 0;
}
int g() {
return 1;
}
int program(string[] args) {
f = g;
return 0;
}