Upstream version 8.36.169.0
[platform/framework/web/crosswalk.git] / src / third_party / libc++ / trunk / test / language.support / support.limits / limits / numeric.limits.members / has_quiet_NaN.pass.cpp
1 //===----------------------------------------------------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is dual licensed under the MIT and the University of Illinois Open
6 // Source Licenses. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 // test numeric_limits
11
12 // has_quiet_NaN
13
14 #include <limits>
15
16 template <class T, bool expected>
17 void
18 test()
19 {
20     static_assert(std::numeric_limits<T>::has_quiet_NaN == expected, "has_quiet_NaN test 1");
21     static_assert(std::numeric_limits<const T>::has_quiet_NaN == expected, "has_quiet_NaN test 2");
22     static_assert(std::numeric_limits<volatile T>::has_quiet_NaN == expected, "has_quiet_NaN test 3");
23     static_assert(std::numeric_limits<const volatile T>::has_quiet_NaN == expected, "has_quiet_NaN test 4");
24 }
25
26 int main()
27 {
28     test<bool, false>();
29     test<char, false>();
30     test<signed char, false>();
31     test<unsigned char, false>();
32     test<wchar_t, false>();
33 #ifndef _LIBCPP_HAS_NO_UNICODE_CHARS
34     test<char16_t, false>();
35     test<char32_t, false>();
36 #endif  // _LIBCPP_HAS_NO_UNICODE_CHARS
37     test<short, false>();
38     test<unsigned short, false>();
39     test<int, false>();
40     test<unsigned int, false>();
41     test<long, false>();
42     test<unsigned long, false>();
43     test<long long, false>();
44     test<unsigned long long, false>();
45 #ifndef _LIBCPP_HAS_NO_INT128
46     test<__int128_t, false>();
47     test<__uint128_t, false>();
48 #endif
49     test<float, true>();
50     test<double, true>();
51     test<long double, true>();
52 }