comparison gcc/testsuite/g++.dg/cpp1y/static_assert1.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children 1830386684a0
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
17 T 17 T
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 return T();
22 } 23 }
23 24
24 int 25 int
25 main() 26 main()
26 { 27 {