fork(1) download
  1. typedef int Foo [3];
  2.  
  3. struct Bar
  4. {
  5. Foo x;
  6. };
  7.  
  8. Bar a = {{100, 200, 300}};
  9.  
  10. int main ()
  11. {
  12. // #if 1 compiles. #if 0 doesn't
  13. #if 1
  14. Bar b;
  15. b = a;
  16. #else
  17. Foo b;
  18. b = a .x;
  19. #endif
  20. }
Success #stdin #stdout 0s 3292KB
stdin
Standard input is empty
stdout
Standard output is empty