diff options
author | Jason Merrill <jason@gcc.gnu.org> | 1998-09-25 17:46:25 -0400 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 1998-09-25 17:46:25 -0400 |
commit | c536a84ad8ecd0f6e583d70710df83cf6a31f02c (patch) | |
tree | 477d327a94631df2628e84dde19cfe0ff1c91fcd | |
parent | 18141e4c189dc4a75e876910624301dd82475758 (diff) | |
download | gcc-c536a84ad8ecd0f6e583d70710df83cf6a31f02c.zip gcc-c536a84ad8ecd0f6e583d70710df83cf6a31f02c.tar.gz gcc-c536a84ad8ecd0f6e583d70710df83cf6a31f02c.tar.bz2 |
update
From-SVN: r22598
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.pt/explicit71.C | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/explicit71.C b/gcc/testsuite/g++.old-deja/g++.pt/explicit71.C index 3da4c61..c84eebc 100644 --- a/gcc/testsuite/g++.old-deja/g++.pt/explicit71.C +++ b/gcc/testsuite/g++.old-deja/g++.pt/explicit71.C @@ -11,5 +11,5 @@ class bug { class a {}; }; template <class X> -template <> -class bug<X>::a<char> {}; // ERROR - invalid specialization +template <> // ERROR - invalid specialization +class bug<X>::a<char> {}; // ERROR - "" |