From: Brendan Kehoe Date: Thu, 27 Aug 1998 18:46:21 +0000 (-0400) Subject: fix test X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0603b640a0e4e416b219329d918e84859a39f57c;p=platform%2Fupstream%2Fgcc.git fix test From-SVN: r22026 --- diff --git a/gcc/testsuite/g++.old-deja/g++.brendan/parse4.C b/gcc/testsuite/g++.old-deja/g++.brendan/parse4.C index 95995ff..03c7d47 100644 --- a/gcc/testsuite/g++.old-deja/g++.brendan/parse4.C +++ b/gcc/testsuite/g++.old-deja/g++.brendan/parse4.C @@ -12,7 +12,7 @@ public: void f() {} }; -int g() { return 0; } +int g() { return 0; } // ERROR - global decl of g main() { @@ -20,5 +20,5 @@ main() B( try1 ).f(); // no syntax error B b( g() ); // no syntax error B( ::g() ).f(); // no syntax error - B( g() ).f(); // syntax error before `.' // ERROR - + B( g() ).f(); // syntax error before `.' // ERROR - parse error }