From: Mark Mitchell Date: Thu, 4 Mar 1999 22:19:36 +0000 (+0000) Subject: Remove duplicate of typename3.C X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6f58f819703fa5d97547cb7d8f079975afb02b03;p=gcc.git Remove duplicate of typename3.C From-SVN: r25588 --- diff --git a/gcc/testsuite/g++.old-deja/g++.pt/typename6.C b/gcc/testsuite/g++.old-deja/g++.pt/typename6.C deleted file mode 100644 index 0b19d54723e..00000000000 --- a/gcc/testsuite/g++.old-deja/g++.pt/typename6.C +++ /dev/null @@ -1,21 +0,0 @@ -// Build don't link: -// Special g++ Options: - -template -struct A -{ - typedef T A_Type; -}; - - -template -struct B : public A -{ - A_Type Func(); -}; - - -template -A::A_Type B::Func() -{ -}