| 233 | int test_ref_overload_fun2(Ref<const MatrixXf> ) { return 5; } |
| 234 | |
| 235 | void test_ref_ambiguous(const Ref<const ArrayXd> &A, Ref<ArrayXd> B) |
| 236 | { |
| 237 | B = A; |
| 238 | B = A - A; |
| 239 | } |
| 240 | |
| 241 | // See also bug 969 |
| 242 | void test_ref_overloads() |
no outgoing calls
no test coverage detected