//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // template<> class complex // { // public: // constexpr complex(const complex&); // }; #include #include int main() { { const std::complex cd(2.5, 3.5); std::complex cf = cd; assert(cf.real() == cd.real()); assert(cf.imag() == cd.imag()); } #ifndef _LIBCPP_HAS_NO_CONSTEXPR { constexpr std::complex cd(2.5, 3.5); constexpr std::complex cf = cd; static_assert(cf.real() == cd.real(), ""); static_assert(cf.imag() == cd.imag(), ""); } #endif }