fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. struct S
  5. {
  6. S(S const& s) { cout << this << "::S(" << &s << ")\n"; }
  7. };
  8.  
  9. int main()
  10. {
  11. S s(s);
  12. }
Success #stdin #stdout 0s 4408KB
stdin
Standard input is empty
stdout
0x7ffe58c45827::S(0x7ffe58c45827)