Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.dg / parse / operator3.C
blob08f5c83f229d9aaaa5439df98be2a18f8a7d6435
1 // PR c++/9454
2 // Origin: Wolfgang Bangerth <bangerth@ticam.utexas.edu>
3 // { dg-do compile }
5 template <int> struct A
7     struct B     { operator int (); };
8     struct C : B { operator int (); };
9 };
11 A<0> a;