int main() { foo ( bar ( arg1, arg2, ), meh ( 1, 's' ) ); }
Standard input is empty
prog.cpp: In function ‘int main()’: prog.cpp:7: error: ‘arg1’ was not declared in this scope prog.cpp:8: error: ‘arg2’ was not declared in this scope prog.cpp:9: error: expected primary-expression before ‘)’ token prog.cpp:9: error: ‘bar’ was not declared in this scope prog.cpp:14: error: ‘meh’ was not declared in this scope prog.cpp:15: error: ‘foo’ was not declared in this scope
Standard output is empty