OSDN Git Service

* typeck2.c (abstract_virtual_errors): Reword diagnostics, make them
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / bitfld2.C
1 // { dg-do assemble  }
2 // { dg-options "-funsigned-bitfields" }
3 // Origin: Mark Mitchell <mark@codesourcery.com>
4
5 typedef int i[4];
6
7 struct S {
8   i j:12; // { dg-error "" } array type as bitfield
9 };