fork(2) download
  1. struct foo
  2. {
  3. int y;
  4. };
  5.  
  6. struct bar
  7. {
  8. foo aFoo;
  9. };
  10.  
  11. int main()
  12. {
  13. int bar::*foo::*ptr = nullptr;
  14. return 0;
  15. }
Success #stdin #stdout 0s 3336KB
stdin
Standard input is empty
stdout
Standard output is empty