blob: d824964e18790482b03ae44767b6fcceb617db21 [file] [log] [blame]
// PR c++/30274
// { dg-do link }
struct S {
bool x : 4;
};
S s;
template <typename T>
void f(T);
template <>
void f(bool) {}
int main() {
f(s.x++);
f(++s.x);
}