blob: 27944795ae29d3d5dcda6033438aecba4dd35a23 [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 "does not name a type" "err" }
// { dg-message "note" "note" { target *-*-* } 13 }
};
template <class U>
A<U>::A_Type B<U>::Func() // { dg-error "expected" } function
{
}