4a2f8460dc
* g++.old-deja/g++.other/bitfld1.C: expected failure * g++.old-deja/g++.other/nested2.C: ditto * g++.old-deja/g++.robertl/eb132.C: no longer an expected failure From-SVN: r22633
15 lines
257 B
C
15 lines
257 B
C
// Build don't link:
|
|
// Based on a bug report by Stephen Vavasis <vavasis@CS.Cornell.EDU>
|
|
|
|
// excess errors test - XFAIL *-*-*
|
|
|
|
// declares template operator!=
|
|
#include <utility>
|
|
|
|
struct foo {
|
|
enum e { bar } baz:1;
|
|
void test() {
|
|
baz != bar;
|
|
}
|
|
};
|