// { dg-do compile } // { dg-options "-std=gnu++11 -pedantic" } template struct is_float { static constexpr bool value = false; }; template<> struct is_float { static constexpr bool value = true; }; template void float_thing(T __x) { static_assert(is_float::value, ""); // { dg-error "static assertion failed" } static_assert(is_float::value); // { dg-error "static assertion failed" } } int main() { float_thing(1); } // { dg-warning "'static_assert' without a message only available with " "" { target *-*-* } 21 }