Commit 6f58f819 by Mark Mitchell

Remove duplicate of typename3.C

From-SVN: r25588
parent aa3d4bf9
// Build don't link:
// Special g++ Options:
template <class T>
struct A
{
typedef T A_Type;
};
template <class U>
struct B : public A<U>
{
A_Type Func();
};
template <class U>
A<U>::A_Type B<U>::Func()
{
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment