fork download
  1. struct element
  2. {
  3. union
  4. {
  5. int foo;
  6. double bar;
  7. };
  8. char thing;
  9. };
  10.  
  11. union preelement{
  12. int foo;
  13. double bar;
  14. };
  15.  
  16. struct element : preelement {
  17. char thing;
  18. }
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty