blob: e967d143f371661faa0e07c680aff513e765e9e4 [file] [log] [blame]
// Build don't link:
// Special g++ Options:
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);
};
template <class U>
void C<U>::Func(A_Type)
{
}