//===----------------------------------------------------------------------===// // // 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(-4.0, 7.5); T rhs(2); std::complex x(-2, 3.75); test(lhs, rhs, x); } int main() { test(); test(); test(); }