summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.bugs/900402_01.C
blob: 42533861fd1ecb2747bf45eec5d33c7d51a73217 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// { dg-do assemble  }
// g++ 1.37.1 bug 900402_01

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

// Cfront 2.0 passes this test.

// keywords: abort, bit-fields, function types

typedef void (func_type) ();

struct s {
  func_type f:32;	// { dg-error "" } bitified with function type
};

int main () { return 0; }