/in/foo.cc:3:14: error: redefinition of 'int a [4]'
3 | int a[4];int a[4];
| ^
/in/foo.cc:3:5: note: 'int a [4]' previously declared here
3 | int a[4];int a[4];
| ^
/in/foo.cc: In function 'int main()':
/in/foo.cc:4:20: warning: empty parentheses were disambiguated as a function declaration [-Wvexing-parse]
4 | int main(){int main(){
| ^~
/in/foo.cc:4:20: note: remove parentheses to default-initialize a variable
4 | int main(){int main(){
| ^~
| --
/in/foo.cc:4:20: note: or replace parentheses with braces to value-initialize a variable
/in/foo.cc:4:22: error: a function-definition is not allowed here before '{' token
4 | int main(){int main(){
| ^
/in/foo.cc:12:2: error: expected '}' at end of input
12 | }
| ^
/in/foo.cc:4:11: note: to match this '{'
4 | int main(){int main(){
| ^