| 611 | #if MPPP_CPLUSPLUS >= 201402L |
| 612 | |
| 613 | constexpr auto test_constexpr_get1(const complex128 &c) |
| 614 | { |
| 615 | int n1 = -1; |
| 616 | c.get(n1); |
| 617 | get(n1, c); |
| 618 | return n1; |
| 619 | } |
| 620 | |
| 621 | constexpr auto test_constexpr_get2(const complex128 &c) |
| 622 | { |
no test coverage detected