CompilerSysY/testcases/functional_test/053_comment2.sy
2023-05-08 21:15:52 +08:00

11 lines
127 B
Plaintext

//test comment
int main(){
int a, b;
a = 10;
b = 2;
/*/*
b = 1;
// b = 2
*/
return b;
}