comparison gcc/testsuite/g++.dg/cpp0x/static_assert13.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
12 { 12 {
13 static constexpr bool value = true; 13 static constexpr bool value = true;
14 }; 14 };
15 15
16 template<typename T> 16 template<typename T>
17 T 17 void
18 float_thing(T __x) 18 float_thing(T __x)
19 { 19 {
20 static_assert(is_float<T>::value, ""); // { dg-error "static assertion failed" } 20 static_assert(is_float<T>::value, ""); // { dg-error "static assertion failed" }
21 static_assert(is_float<T>::value); // { dg-error "static assertion failed" } 21 static_assert(is_float<T>::value); // { dg-error "static assertion failed" }
22 } 22 }