| 295 | int test_ref_overload_fun1(Ref<MatrixXf> ) { return 3; } |
| 296 | |
| 297 | int test_ref_overload_fun2(Ref<const MatrixXd> ) { return 4; } |
| 298 | int test_ref_overload_fun2(Ref<const MatrixXf> ) { return 5; } |
| 299 | |
| 300 | void test_ref_ambiguous(const Ref<const ArrayXd> &A, Ref<ArrayXd> B) |
no outgoing calls
no test coverage detected