| 230 | int test_ref_overload_fun1(Ref<MatrixXf> ) { return 3; } |
| 231 | |
| 232 | int test_ref_overload_fun2(Ref<const MatrixXd> ) { return 4; } |
| 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) |
no outgoing calls
no test coverage detected