fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int &test()
  5. {
  6. int a = 1337;
  7. return a;
  8. }
  9.  
  10. int main()
  11. {
  12. std::cout << test();
  13. return 0;
  14. }
Runtime error #stdin #stdout 0s 16064KB
stdin
Standard input is empty
stdout
Standard output is empty