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