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