aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.bugs/900401_01.C
blob: 18ecd614e7a4a9ee4024ea0c2d2f82de79633109 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// g++ 1.37.1 bug 900401_01

// The following erroneous code causes g++ to abort.

// Cfront 2.0 passes this test.

// keywords: abort, bit-fields, arrays

typedef unsigned nibble_array[4];

struct whole {
  nibble_array nibbles:16;	// ERROR - 
};

int main () { return 0; }