//===----------------------------------------------------------------------===// // // 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 complex& lhs, const T& rhs); #include #include #include "test_macros.h" 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(int, char**) { test(); test(); test(); return 0; }