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:
parent
066d147cbf
commit
3aeab4377c
2 changed files with 6 additions and 2 deletions
|
@ -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 *-*-*
|
||||
};
|
||||
|
|
|
@ -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 *-*-*
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue