//===----------------------------------------------------------------------===// // // 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 // bool // operator==(const complex& lhs, const complex& rhs); #include #include template void test_constexpr() { #if _LIBCPP_STD_VER > 11 { constexpr std::complex lhs(1.5, 2.5); constexpr std::complex rhs(1.5, -2.5); static_assert( !(lhs == rhs), ""); } { constexpr std::complex lhs(1.5, 2.5); constexpr std::complex rhs(1.5, 2.5); static_assert(lhs == rhs, ""); } #endif } template void test() { { std::complex lhs(1.5, 2.5); std::complex rhs(1.5, -2.5); assert( !(lhs == rhs)); } { std::complex lhs(1.5, 2.5); std::complex rhs(1.5, 2.5); assert(lhs == rhs); } test_constexpr (); } int main() { test(); test(); test(); // test_constexpr (); }