rt_gccstream/gcc/testsuite/g++.old-deja/g++.other/900403_04.C

13 lines
264 B
C

// { dg-do assemble }
// GROUPS passed abort
// g++ 1.37.1 bug 900403_04
// The following erroneous code causes g++ to abort.
// keywords: abort, bit-fields, zero length
struct s {
unsigned int foo:0; // { dg-error "" } causes abort
unsigned int field;
};