//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // test numeric_limits // lowest() #include #include #include #include #include template void test(T expected) { assert(std::numeric_limits::lowest() == expected); assert(std::numeric_limits::is_bounded); assert(std::numeric_limits::lowest() == expected); assert(std::numeric_limits::is_bounded); assert(std::numeric_limits::lowest() == expected); assert(std::numeric_limits::is_bounded); assert(std::numeric_limits::lowest() == expected); assert(std::numeric_limits::is_bounded); } int main() { test(false); test(CHAR_MIN); test(SCHAR_MIN); test(0); test(WCHAR_MIN); #ifndef _LIBCPP_HAS_NO_UNICODE_CHARS test(0); test(0); #endif // _LIBCPP_HAS_NO_UNICODE_CHARS test(SHRT_MIN); test(0); test(INT_MIN); test(0); test(LONG_MIN); test(0); test(LLONG_MIN); test(0); test(-FLT_MAX); test(-DBL_MAX); test(-LDBL_MAX); }