//===----------------------------------------------------------------------===// // // 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(1.5, 2.5); std::complex x(2.25, 3.75); test(lhs, rhs, x); } int main() { test(); test(); test(); }