// In p4.cc Does not compile on my laptop, float is not void or integral. #include #include #include template constexpr bool void_or_integral(){ return std::is_void::value || std::is_integral::value; } static_assert(void_or_integral(), "Expected void or integral"); int main(){ }