1 // PR c++/84596
2 // { dg-do compile { target c++11 } }
3 
4 template<int x>
5 struct a {
ba6   constexpr void b() {
7     int c;
8     static_assert(c %= 1, "");
9   }
10 };
11