Imported Upstream version 4.8.1
[platform/upstream/gcc48.git] / libstdc++-v3 / testsuite / 26_numerics / complex / cons / 48760.cc
1 // { dg-require-c-std "" }
2
3 // Copyright (C) 2011-2013 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library.  This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 3, or (at your option)
9 // any later version.
10
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 // GNU General Public License for more details.
15
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING3.  If not see
18 // <http://www.gnu.org/licenses/>.
19
20 #include <complex>
21 #include <limits>
22 #include <testsuite_hooks.h>
23
24 template<typename T>
25   void do_test01()
26   {
27     bool test __attribute__((unused)) = true;
28
29     if (std::numeric_limits<T>::has_quiet_NaN)
30       {
31         std::complex<T> c1(T(0), std::numeric_limits<T>::quiet_NaN());
32         VERIFY( c1.real() == T(0) );
33         VERIFY( std::isnan(c1.imag()) );
34
35         std::complex<T> c2(std::numeric_limits<T>::quiet_NaN(), T(0));
36         VERIFY( std::isnan(c2.real()) );
37         VERIFY( c2.imag() == T(0) );
38
39         std::complex<T> c3(std::numeric_limits<T>::quiet_NaN(),
40                            std::numeric_limits<T>::quiet_NaN());
41         VERIFY( std::isnan(c3.real()) );
42         VERIFY( std::isnan(c3.imag()) );
43       }
44   }
45
46 // libstdc++/48760
47 void test01()
48 {
49   do_test01<float>();
50   do_test01<double>();
51   do_test01<long double>();
52 }
53
54 int main()
55 {
56   test01();
57   return 0;
58 }