blob: bb97158ca0aa0f3ea23b83cfc77c70e0296405f4 [file] [log] [blame]
// { dg-do assemble }
// { dg-options "-Wno-deprecated" }
template <class T>
struct A
{
typedef T A_Type;
};
template <class U>
struct B : public A<U>
{
};
template <class U>
struct C : public B<U>
{
void Func(A_Type); // { dg-warning "" } implicit typename
};
template <class U>
void C<U>::Func(A_Type) { // { dg-warning "" } implicit typename
}