(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.robertl/
eb76.C
// { dg-do assemble  }
// { dg-options "-fno-short-enums" }
// { dg-skip-if "" int16 }
// 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
  }
}