Remove duplicate of typename3.C

From-SVN: r25588
This commit is contained in:
Mark Mitchell 1999-03-04 22:19:36 +00:00
parent aa3d4bf947
commit 6f58f81970

View File

@ -1,21 +0,0 @@
// 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()
{
}