fork download
  1. struct S
  2. {
  3. int x;
  4. int& z = x;
  5. };
  6.  
  7. union U
  8. {
  9. S s;
  10. };
  11.  
  12. int main()
  13. {
  14. }
Success #stdin #stdout 0s 3336KB
stdin
Standard input is empty
stdout
Standard output is empty