]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/26_numerics/complex/literals/values.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 26_numerics / complex / literals / values.cc
CommitLineData
52066eae
JW
1// { dg-options "-Wno-pedantic" }
2// { dg-do run { target c++14 } }
ae5543e6 3
99dee823 4// Copyright (C) 2013-2021 Free Software Foundation, Inc.
ae5543e6
ESR
5//
6// This file is part of the GNU ISO C++ Library. This library is free
7// software; you can redistribute it and/or modify it under the
8// terms of the GNU General Public License as published by the
9// Free Software Foundation; either version 3, or (at your option)
10// any later version.
11
12// This library is distributed in the hope that it will be useful,
13// but WITHOUT ANY WARRANTY; without even the implied warranty of
14// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15// GNU General Public License for more details.
16
17// You should have received a copy of the GNU General Public License along
18// with this library; see the file COPYING3. If not see
19// <http://www.gnu.org/licenses/>.
20
21#include <complex>
22#include <testsuite_hooks.h>
23
24void
25test02()
26{
27 using namespace std::literals::complex_literals;
28
29 std::complex<float> j1 = 1.0if;
30 std::complex<float> k1 = 1if;
31 std::complex<double> j2 = 2.0i;
32 std::complex<double> k2 = 2i;
33 std::complex<long double> j4 = 4.0il;
34 std::complex<long double> k4 = 4il;
35
36 VERIFY( j1 == std::complex<float>(0.0F, 1.0F) );
37 VERIFY( k1 == std::complex<float>(0.0F, 1.0F) );
38 VERIFY( j2 == std::complex<double>(0.0, 2.0) );
39 VERIFY( k2 == std::complex<double>(0.0, 2.0) );
40 VERIFY( j4 == std::complex<long double>(0.0L, 4.0L) );
41 VERIFY( k4 == std::complex<long double>(0.0L, 4.0L) );
42}
43
44int
45main()
46{
47 test02();
48}