1 2 3 4 5 6 7 8
// PR c++/31273 enum E { e }; struct S { E v:5; }; S s; int main() { if (!s.v) return 0; }