Commit 3aeab437 by Alexandre Oliva

these XFAILs are hard to get right on the first try.

these XFAILs are hard to get right on the first try.  Yet harder when results
are different on different platforms :-)

From-SVN: r22976
parent 066d147c
...@@ -3,11 +3,13 @@ ...@@ -3,11 +3,13 @@
// Based on bug report by Klaus-Georg Adams // Based on bug report by Klaus-Georg Adams
// <Klaus-Georg.Adams@chemie.uni-karlsruhe.de> // <Klaus-Georg.Adams@chemie.uni-karlsruhe.de>
// crash test - XFAIL *-*-*
struct bar { struct bar {
typedef bar t; typedef bar t;
}; };
struct foo : bar { struct foo : bar {
using bar::t; using bar::t;
t baz(); // syntax error?!? - XFAIL *-*-* t baz(); // gets bogus error - XFAIL *-*-*
}; };
...@@ -3,11 +3,13 @@ ...@@ -3,11 +3,13 @@
// Based on bug report by Klaus-Georg Adams // Based on bug report by Klaus-Georg Adams
// <Klaus-Georg.Adams@chemie.uni-karlsruhe.de> // <Klaus-Georg.Adams@chemie.uni-karlsruhe.de>
// crash test - XFAIL *-*-*
struct bar { struct bar {
typedef bar t; typedef bar t;
}; };
struct foo : bar { struct foo : bar {
using bar::t; using bar::t;
t baz; // syntax error?!? - XFAIL *-*-* t baz; // 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