aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/bitfld1.C
blob: ad21fd7fb8561e06d3b246bf416d32c8c1b813bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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;
  }
};