aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorMark Mitchell <mmitchel@gcc.gnu.org>1998-08-28 18:06:38 +0000
committerMark Mitchell <mmitchel@gcc.gnu.org>1998-08-28 18:06:38 +0000
commitc296fce54ec9b26cccc73612fb6d8b3decdc49c3 (patch)
treea71f2ca0d4307cfc8e8fac478d770817f8e4531d /gcc
parent21d886ac9bba8be33bc0717266a30116b4089e69 (diff)
downloadgcc-c296fce54ec9b26cccc73612fb6d8b3decdc49c3.zip
gcc-c296fce54ec9b26cccc73612fb6d8b3decdc49c3.tar.gz
gcc-c296fce54ec9b26cccc73612fb6d8b3decdc49c3.tar.bz2
Tweak
From-SVN: r22066
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.pt/typename11.C4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/typename11.C b/gcc/testsuite/g++.old-deja/g++.pt/typename11.C
index 2148643..0b4337f 100644
--- a/gcc/testsuite/g++.old-deja/g++.pt/typename11.C
+++ b/gcc/testsuite/g++.old-deja/g++.pt/typename11.C
@@ -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);