Reverting merge from trunk
[official-gcc.git] / libstdc++-v3 / testsuite / 26_numerics / complex / cons / 48760.cc
blob2e5721bf491cdeee96f918a1f38abaa10edabf8b
1 // { dg-require-c-std "" }
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.
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.
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/>.
20 #include <complex>
21 #include <limits>
22 #include <testsuite_hooks.h>
24 template<typename T>
25 void do_test01()
27 bool test __attribute__((unused)) = true;
29 if (std::numeric_limits<T>::has_quiet_NaN)
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()) );
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) );
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()) );
46 // libstdc++/48760
47 void test01()
49 do_test01<float>();
50 do_test01<double>();
51 do_test01<long double>();
54 int main()
56 test01();
57 return 0;