| 254 | friend decltype(auto) get_value(const expression& e) { return e.value(); } |
| 255 | |
| 256 | decltype(auto) value() const { return Operator::call(get_value(lhs), get_value(rhs)); }; |
| 257 | |
| 258 | TEST_FOREACH_UNARY_OPERATORS(TEST_EXPR_UNARY_OPERATOR) |
| 259 | TEST_FOREACH_BINARY_OPERATORS(TEST_EXPR_BINARY_OPERATOR) |
no test coverage detected