CompilerSysY/testcases/hidden_functional/06_func_name.sy
2023-04-30 00:57:11 +08:00

9 lines
67 B
Plaintext
Executable File

int f() {
return 10;
}
int main() {
int f = 20;
return f;
}