[[Rcpp::export]]
| 91 | |
| 92 | // [[Rcpp::export]] |
| 93 | SEXP testUnwindProtectFunctionObject(Environment indicator, bool fail) { |
| 94 | unwindIndicator my_data(indicator); |
| 95 | SEXP out = R_NilValue; |
| 96 | out = Rcpp::unwindProtect(FunctionObj(10, fail)); |
| 97 | return out; |
| 98 | } |
nothing calls this directly
no test coverage detected