// { dg-do assemble }// g++ 1.37.1 bug 900403_04// The following erroneous code causes g++ to abort.// keywords: abort, bit-fields, zero lengthstruct s {unsigned int foo:0;// { dg-error "" } This is the real lineunsigned int field;};intmain() {return0; }