diff options
author | Jeff Law <law@gcc.gnu.org> | 1998-10-08 12:21:50 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-10-08 12:21:50 -0600 |
commit | 96fc0606e3f7106dea7876f0177aeea861dd425a (patch) | |
tree | cb0b47543328e62bf12b3491658dfae4379ffddf /gcc | |
parent | ba0dcc87bece9b118fb6cc3ff2261be4901faabf (diff) | |
download | gcc-96fc0606e3f7106dea7876f0177aeea861dd425a.zip gcc-96fc0606e3f7106dea7876f0177aeea861dd425a.tar.gz gcc-96fc0606e3f7106dea7876f0177aeea861dd425a.tar.bz2 |
From Brendan:
date: 1998/07/15 18:18:49; author: brendan; state: Exp; lines: +2 -2
dd expected warning, remove first error loc (now only on line 13)
From-SVN: r22932
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.pt/ttp3.C | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/ttp3.C b/gcc/testsuite/g++.old-deja/g++.pt/ttp3.C index 9a047a8..322dd19 100644 --- a/gcc/testsuite/g++.old-deja/g++.pt/ttp3.C +++ b/gcc/testsuite/g++.old-deja/g++.pt/ttp3.C @@ -10,5 +10,5 @@ template<template<class> class D,class E> class C int main() { - C<D,int> c; // ERROR - param list not match + C<D,int> c; // ERROR - param list not match// WARNING - sees it as not having a type } |