//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // test numeric_limits // traps #include template void test() { static_assert(std::numeric_limits::traps == expected, "traps test 1"); static_assert(std::numeric_limits::traps == expected, "traps test 2"); static_assert(std::numeric_limits::traps == expected, "traps test 3"); static_assert(std::numeric_limits::traps == expected, "traps test 4"); } int main() { test(); test(); test(); test(); test(); #ifndef _LIBCPP_HAS_NO_UNICODE_CHARS test(); test(); #endif test(); test(); test(); test(); test(); test(); test(); test(); test(); test(); test(); }