2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / parse / crash4.C
bloba24f0dd003c1e5296c74004dffecbe2560c765e2
1 struct Bar
2  {
3      typedef int type;
4  };
5  
6  struct Foo
7  {
8      void func(void)
9      {
10        mutable Bar::type x; // { dg-error "" }
11      }
12  };