blob: c74e7bd8134adeae974cb289f7570e3e59698a99 [file] [log] [blame]
// { dg-do assemble }
// 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
}
}