* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / static_assert10.C
blob5ff085487cc552aa86745624f42f07482bbb0f0d
1 // PR c++/60254
2 // { dg-do compile { target c++11 } }
4 template<typename T> bool foo(T)
6   int i;
7   static_assert(foo(i), "Error"); // { dg-error "non-constant condition|not usable|non-.constexpr." }
8   return true;