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
This commit is contained in:
Alexandre Oliva 1998-10-10 11:50:22 +00:00
parent 066d147cbf
commit 3aeab4377c
2 changed files with 6 additions and 2 deletions

View File

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

View File

@ -3,11 +3,13 @@
// Based on bug report by Klaus-Georg Adams
// <Klaus-Georg.Adams@chemie.uni-karlsruhe.de>
// crash test - XFAIL *-*-*
struct bar {
typedef bar t;
};
struct foo : bar {
using bar::t;
t baz; // syntax error?!? - XFAIL *-*-*
t baz; // gets bogus error - XFAIL *-*-*
};