OSDN Git Service

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