SysYTestcases/function_2021fin/053_comment2.sy
ridethepig 13f3cb710a init
2023-05-16 00:56:56 +08:00

11 lines
127 B
Plaintext

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