Tweak
authormmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 28 Aug 1998 18:06:38 +0000 (18:06 +0000)
committermmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 28 Aug 1998 18:06:38 +0000 (18:06 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@22066 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/g++.old-deja/g++.pt/typename11.C

index 2148643..0b4337f 100644 (file)
@@ -8,9 +8,9 @@ struct S {
 };
 
 template <class T, class U, int I>
-void f(T, U)
+S<T,I>::X f(T, U)
 {
   S<T, I>::X();
 }
 
-template void f<int, double, 3>(int, double);
+template S<int, double>::X f<int, double, 3>(int, double);