PR c++/85262 - ICE with redundant qualification on constructor.
[official-gcc.git] / gcc / testsuite / g++.dg / parse / ctor10.C
blob99d3ca8c18d782277af704444161acfec6ef56b8
1 // PR c++/85262
2 // { dg-options -fpermissive }
4 struct A {};
6 template<int> struct B : A
8   B()
9   {
10     A::A(A());                  // { dg-warning "constructor" }
11   }
14 B<0> b;