diff options
Diffstat (limited to 'libcxx/test/std/numerics/complex.number/complex.ops/scalar_equals_complex.pass.cpp')
-rw-r--r-- | libcxx/test/std/numerics/complex.number/complex.ops/scalar_equals_complex.pass.cpp | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/libcxx/test/std/numerics/complex.number/complex.ops/scalar_equals_complex.pass.cpp b/libcxx/test/std/numerics/complex.number/complex.ops/scalar_equals_complex.pass.cpp new file mode 100644 index 00000000000..0cd903541fe --- /dev/null +++ b/libcxx/test/std/numerics/complex.number/complex.ops/scalar_equals_complex.pass.cpp @@ -0,0 +1,81 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + +// <complex> + +// template<class T> +// bool +// operator==(const T& lhs, const complex<T>& rhs); + +#include <complex> +#include <cassert> + +template <class T> +void +test_constexpr() +{ +#if _LIBCPP_STD_VER > 11 + { + constexpr T lhs(-2.5); + constexpr std::complex<T> rhs(1.5, 2.5); + static_assert(!(lhs == rhs), ""); + } + { + constexpr T lhs(-2.5); + constexpr std::complex<T> rhs(1.5, 0); + static_assert(!(lhs == rhs), ""); + } + { + constexpr T lhs(1.5); + constexpr std::complex<T> rhs(1.5, 2.5); + static_assert(!(lhs == rhs), ""); + } + { + constexpr T lhs(1.5); + constexpr std::complex<T> rhs(1.5, 0); + static_assert(lhs == rhs, ""); + } +#endif +} + +template <class T> +void +test() +{ + { + T lhs(-2.5); + std::complex<T> rhs(1.5, 2.5); + assert(!(lhs == rhs)); + } + { + T lhs(-2.5); + std::complex<T> rhs(1.5, 0); + assert(!(lhs == rhs)); + } + { + T lhs(1.5); + std::complex<T> rhs(1.5, 2.5); + assert(!(lhs == rhs)); + } + { + T lhs(1.5); + std::complex<T> rhs(1.5, 0); + assert(lhs == rhs); + } + + test_constexpr<T> (); +} + +int main() +{ + test<float>(); + test<double>(); + test<long double>(); +// test_constexpr<int>(); +} |