blob: 9749e14ccd0365e1934d594f91b285b020eb32a2 [file] [log] [blame]
// { dg-do compile { target c++17 } }
template<typename T>
struct is_float
{
static constexpr bool value = false;
};
template<>
struct is_float<float>
{
static constexpr bool value = true;
};
template<typename T>
void
float_thing(T __x)
{
static_assert(is_float<T>::value, ""); // { dg-error "static assertion failed" }
static_assert(is_float<T>::value); // { dg-error "static assertion failed" }
}
int
main()
{
float_thing(1);
}