//===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // template // complex // operator-(const T& lhs, const complex& rhs); #include #include #include "test_macros.h" template void test(const T& lhs, const std::complex& rhs, std::complex x) { assert(lhs - rhs == x); } template void test() { { T lhs(1.5); std::complex rhs(3.5, 4.5); std::complex x(-2.0, -4.5); test(lhs, rhs, x); } { T lhs(1.5); std::complex rhs(-3.5, 4.5); std::complex x(5.0, -4.5); test(lhs, rhs, x); } } int main(int, char**) { test(); test(); test(); return 0; }