From: Jason Merrill Date: Tue, 23 Mar 1999 11:59:23 +0000 (-0500) Subject: restore X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6599009997e9ff24167006b936c4d63a485fe522;p=gcc.git restore From-SVN: r25928 --- diff --git a/gcc/testsuite/g++.old-deja/g++.pt/typename6.C b/gcc/testsuite/g++.old-deja/g++.pt/typename6.C new file mode 100644 index 00000000000..cdb792fe8ab --- /dev/null +++ b/gcc/testsuite/g++.old-deja/g++.pt/typename6.C @@ -0,0 +1,20 @@ +// 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() +{ +}