OSDN Git Service

PR c++/4222, c++/5995
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / bitfld2.C
1 // Origin: Mark Mitchell <mark@codesourcery.com>
2 // Special g++ Options: -funsigned-bitfields
3
4 typedef int i[4];
5
6 struct S {
7   i j:12; // ERROR - array type as bitfield
8 };