//===----------------------------------------------------------------------===// // // 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 T& lhs, const complex& rhs); #include #include 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() { test(); test(); test(); }