Bug 15507 – [3.4/4.0 Regression] hang laying out union

Description sdouglass 2004-05-18 10:13:33 UTC

compiling this hangs:

struct A {
  // empty
};

struct B : A {
  int b;
};

union U {
  A a;
  B b;
};