summaryrefslogtreecommitdiffstats
path: root/test/numerics/complex.number/complex.special/double_float_implicit.pass.cpp
blob: 34e47289c4a59c638a17433061c0ee6a527e46de (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());
}