Commit ef869e71 by Jason Merrill

change to bogus errors

From-SVN: r22123
parent 8309458a
...@@ -12,7 +12,7 @@ public: ...@@ -12,7 +12,7 @@ public:
void f() {} void f() {}
}; };
int g() { return 0; } // ERROR - global decl of g int g() { return 0; } // gets bogus error - referenced below XFAIL *-*-*
main() main()
{ {
...@@ -20,5 +20,5 @@ main() ...@@ -20,5 +20,5 @@ main()
B( try1 ).f(); // no syntax error B( try1 ).f(); // no syntax error
B b( g() ); // no syntax error B b( g() ); // no syntax error
B( ::g() ).f(); // no syntax error B( ::g() ).f(); // no syntax error
B( g() ).f(); // syntax error before `.' // ERROR - parse error B( g() ).f(); // gets bogus error - treated as decl XFAIL *-*-*
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment