//===----------------------------------------------------------------------===// // // 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 // complex // operator-(const complex& lhs, const T& rhs); #include #include template void test(const std::complex& lhs, const T& rhs, std::complex x) { assert(lhs - rhs == x); } template void test() { { std::complex lhs(1.5, 2.5); T rhs(3.5); std::complex x(-2.0, 2.5); test(lhs, rhs, x); } { std::complex lhs(1.5, -2.5); T rhs(-3.5); std::complex x(5.0, -2.5); test(lhs, rhs, x); } } int main() { test(); test(); test(); }