fork download
  1. #define FOO(x) do { x; } while(false)
  2.  
  3. int f(int a) {
  4. if(a > 10)
  5. FOO(return 42);
  6. else return 10;
  7. }
  8.  
  9. int main() {
  10. f(11);
  11. }
  12.  
Success #stdin #stdout 0s 2824KB
stdin
Standard input is empty
stdout
Standard output is empty