http://gcc.gnu.org/ml/gcc-patches/2008-02/msg00110.html
[official-gcc.git] / gcc / testsuite / g++.dg / parse / crash7.C
blob86fa477266b10433f3efd72d7b172c68e2f104d9
1 struct A
3     int foo () const { return 0; }
4 };
6 template <typename> void bar (int x[], const A &a)
8     const int i=a.foo();
9     x[i]=0;