fork download
  1. int main()
  2. {
  3. foo
  4. (
  5. bar
  6. (
  7. arg1,
  8. arg2,
  9. ),
  10. meh
  11. (
  12. 1,
  13. 's'
  14. )
  15. );
  16. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
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
stdout
Standard output is empty