CS153/hw5/hw5programs/tc_error_func_redeclaration.oat

12 lines
118 B
Text
Raw Normal View History

int id(int x) {
return x;
}
bool id (bool b) {
return b;
}
int program(int argc, string[] argv) {
return 0;
}