diff options
author | nathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-25 17:22:37 +0000 |
---|---|---|
committer | nathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-25 17:22:37 +0000 |
commit | 24eab01c024d6cd6d4b4b64de6fb36dd17b8eab3 (patch) | |
tree | ef97704b1f9787d836c379b89c6c505d27549ff7 /gcc/testsuite/g++.dg/other/error2.C | |
parent | 8a4008da487103462b7e1aae7c4545dc588eb410 (diff) | |
download | gcc-24eab01c024d6cd6d4b4b64de6fb36dd17b8eab3.tar.gz |
* g++.dg/other/error2.C: Tweak expected errors.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@69796 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite/g++.dg/other/error2.C')
-rw-r--r-- | gcc/testsuite/g++.dg/other/error2.C | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/g++.dg/other/error2.C b/gcc/testsuite/g++.dg/other/error2.C index 344be234f3b..391115ddc6d 100644 --- a/gcc/testsuite/g++.dg/other/error2.C +++ b/gcc/testsuite/g++.dg/other/error2.C @@ -10,5 +10,5 @@ namespace N class B { friend void operator>>(int, class B); }; class N { friend void operator>>(int,class N); }; } -void N::operator>>(int, N::B) // { dg-error "`B' is not a member of `class N::N'|non-function|primary-expression" "" } +void N::operator>>(int, N::B) // { dg-error "`B' is not a member of|non-function|primary-expression" "" } { } // { dg-error "" "" } |