Commit e98791f8 by Alexandre Oliva Committed by Alexandre Oliva

parse3.C: XFAILs, not ERRORs

	* g++.old-deja/g++.brendan/parse3.C: XFAILs, not ERRORs
	* g++.old-deja/g++.brendan/parse5.C: XFAILs, not ERRORs
	* g++.old-deja/g++.brendan/parse6.C: XFAILs, not ERRORs

From-SVN: r22971
parent 2feb9724
1998-10-10 Alexandre Oliva <oliva@dcc.unicamp.br> 1998-10-10 Alexandre Oliva <oliva@dcc.unicamp.br>
* g++.old-deja/g++.brendan/parse3.C: XFAILs, not ERRORs
* g++.old-deja/g++.brendan/parse5.C: XFAILs, not ERRORs
* g++.old-deja/g++.brendan/parse6.C: XFAILs, not ERRORs
* g++.old-deja/g++.other/using5.C: New test; using decl from base * g++.old-deja/g++.other/using5.C: New test; using decl from base
class should be usable as argument of member function class should be usable as argument of member function
* g++.old-deja/g++.other/using6.C: New test; using decl from base * g++.old-deja/g++.other/using6.C: New test; using decl from base
......
...@@ -18,5 +18,5 @@ A A::operator+(const A in) ...@@ -18,5 +18,5 @@ A A::operator+(const A in)
if (high==0) if (high==0)
return A(); // this works return A(); // this works
else else
return (A()); // this works not !! -> why ?? // ERROR - return (A()); // this works not // gets bogus error - XFAIL *-*-*
} // ERROR - } // gets bogus error - XFAIL *-*-*
...@@ -21,5 +21,5 @@ public: ...@@ -21,5 +21,5 @@ public:
int main() int main()
{ {
unsigned char b[3]; unsigned char b[3];
buf<3> b2(ptr8(&b[0],3)); // ERROR - buf<3> b2(ptr8(&b[0],3)); // gets bogus error - XFAIL *-*-*
} }
...@@ -9,5 +9,5 @@ class A { }; ...@@ -9,5 +9,5 @@ class A { };
main() { main() {
A a = a; A a = a;
A b(b); // ERROR - A b(b); // gets bogus error - 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