fork download
  1.  
  2. struct Test {
  3. struct { int a; int b; } first;
  4. struct { int a; int b; } second;
  5. };
  6.  
  7. int main() {
  8. struct Test test;
  9. test.first.a = 42;
  10.  
  11. return 0;
  12. }
Success #stdin #stdout 0s 2292KB
stdin
Standard input is empty
stdout
Standard output is empty