fork download
  1. #include<vector>
  2.  
  3. class VeryVeryVeryLongTypeName;
  4. typedef class VeryVeryVeryLongTypeName S;
  5. class VeryVeryVeryLongTypeName
  6. {
  7. bool is_ok;
  8. public:
  9. VeryVeryVeryLongTypeName() : is_ok(false) {}
  10. };
  11.  
  12. S f()
  13. {
  14. S v;
  15.  
  16.  
  17.  
  18. if (true)
  19. {
  20. return v;
  21. }
  22. else
  23. {
  24. return S();
  25. }
  26.  
  27.  
  28. if (true)
  29. {
  30. return v;
  31. }
  32. else
  33. {
  34. return S();
  35. }
  36. }
  37.  
  38.  
  39.  
  40.  
  41. int main() {
  42.  
  43.  
  44. }
Success #stdin #stdout 0s 3292KB
stdin
Standard input is empty
stdout
Standard output is empty