8sa1-gcc/gcc/testsuite/g++.old-deja/g++.other/bitfld1.C
Alexandre Oliva 4a2f8460dc bitfld1.C: expected failure
* 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
1998-09-28 21:24:13 +00:00

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;
}
};