summaryrefslogtreecommitdiffstats
path: root/test/numerics/complex.number/complex.special/double_float_explicit.pass.cpp
blob: 800871db94f727ea756d2096d4a3e2b984d42b93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//===----------------------------------------------------------------------===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

// <complex>

// template<> class complex<double>
// { 
// public: 
//     constexpr complex(const complex<float>&); 
// };

#include <complex>
#include <cassert>

int main()
{
    const std::complex<float> cd(2.5, 3.5);
    std::complex<double> cf(cd);
    assert(cf.real() == cd.real());
    assert(cf.imag() == cd.imag());
}