summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.robertl/eb76.C
blob: 3125dc15f34ee5c19e901ee178184d720e0b63a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// { dg-do assemble  }
// { dg-options "-fno-short-enums" }
// the template operator!= interferes.  It should be in a namespace.

#include <utility>

enum T {
  V1
};

struct X {
  T      t : 31;
};

void
f(X& v) {
  if( v.t != V1 ) {		// complains about taking address of bitfield
  }
}