fork(1) download
  1. struct x
  2. {
  3. void bar()
  4. {
  5. foo();
  6. }
  7. void foo(){}
  8. };
  9.  
  10. int main(){x().bar();}
Success #stdin #stdout 0s 2848KB
stdin
Standard input is empty
stdout
Standard output is empty