1// g++ 1.37.1 bug 900403_04
2
3// The following erroneous code causes g++ to abort.
4
5// keywords: abort, bit-fields, zero length
6
7struct s {
8  unsigned int foo:0;		// ERROR - This is the real line
9  unsigned int field;
10};
11
12int main () { return 0; }
13