1 // PR c++/84596
2 // { dg-do compile { target c++11 } }
3 
4 template<int x>
b(int c)5 void b(int c) {
6   static_assert (c, "c"); // { dg-error "non-constant|not a constant" }
7 }
8