1 // PR c++/60254
2 // { dg-do compile { target c++11 } }
3 
foo(T)4 template<typename T> bool foo(T)
5 {
6   int i;
7   static_assert(foo(i), "Error"); // { dg-error "non-constant condition|not usable|non-.constexpr." }
8   return true;
9 }
10