fork download
  1. #include <cassert>
  2.  
  3. bool f() { return true; }
  4.  
  5. int g() { return 0; }
  6.  
  7. int h() {
  8. assert(false);
  9. return 0;
  10. }
  11.  
  12. int main() {
  13. return f()? g() : h();
  14. }
  15.  
Success #stdin #stdout 0s 2824KB
stdin
Standard input is empty
stdout
Standard output is empty