/in/foo.c: In function 'main':
/in/foo.c:11:9: error: expected expression before 'int'
11 | int j=1;
| ^~~
/in/foo.c:12:17: error: 'j' undeclared (first use in this function)
12 | switch (j)
| ^
/in/foo.c:12:17: note: each undeclared identifier is reported only once for each function it appears in
/in/foo.c:19:9: error: case label not within a switch statement
19 | case 2:
| ^~~~
/in/foo.c: At top level:
/in/foo.c:23:20: error: expected identifier or '(' before 'return'
23 | return 0;}
| ^~~~~~
/in/foo.c:23:29: error: expected identifier or '(' before '}' token
23 | return 0;}
| ^