fork(1) download
  1. struct foo;
  2. typedef struct foo foo;
  3. int test(foo* pFoo);
  4. foo* pEvent = 0;
  5.  
  6. int main ()
  7. {
  8. const auto var = test(pEvent);
  9. }
  10.  
  11. int test(foo*) {return 0;}
  12.  
Success #stdin #stdout 0s 2824KB
stdin
Standard input is empty
stdout
Standard output is empty