aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/parse/crash4.C
blob: a24f0dd003c1e5296c74004dffecbe2560c765e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
struct Bar
 {
     typedef int type;
 };
 
 struct Foo
 {
     void func(void)
     {
       mutable Bar::type x; // { dg-error "" }
     }
 };