fork download
  1. #include <iostream>
  2.  
  3. struct A
  4. {
  5.  
  6. };
  7.  
  8. void f(A&)
  9. {
  10.  
  11. }
  12.  
  13. int main() {
  14. A a;
  15. f(a);
  16.  
  17. return 0;
  18. }
Success #stdin #stdout 0s 3292KB
stdin
Standard input is empty
stdout
Standard output is empty