blob: 926343b4e239f9688a0f59a5cf7397cd865f3188 [file] [log] [blame]
// PR c++/58273
class A {};
class B
{
int goo(A);
};
template<typename E>
class D : public B
{
void foo(A t)
{
int const i(B::goo(t));
}
};