fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. class e {};
  5.  
  6. int main() {
  7. // your code goes here
  8. e& e = e{};
  9. return 0;
  10. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp: In function ‘int main()’:
prog.cpp:8:10: error: expected ‘,’ or ‘;’ before ‘{’ token
  e& e = e{};
          ^
stdout
Standard output is empty