blob: 34e356b57ea768fa06f4daa5d14978b9970973af [file] [log] [blame]
// { dg-do assemble }
template <class T>
struct A
{
typedef T A_Type;
};
template <class U>
struct B : public A<U>
{
A_Type Func(); // { dg-error "" } declaration
};
template <class U>
A<U>::A_Type B<U>::Func() // { dg-error "" } function
{
}