fork(2) download
  1.  
  2. #include <iostream>
  3.  
  4.  
  5. struct A
  6. {
  7. friend void f(A x)
  8. {
  9. std::cout << "A\n";
  10. }
  11. };
  12.  
  13. int main()
  14. {
  15. f(A());
  16.  
  17. }
  18.  
  19.  
Success #stdin #stdout 0.01s 2724KB
stdin
Standard input is empty
stdout
A