[[Rcpp::export]]
| 166 | |
| 167 | // [[Rcpp::export]] |
| 168 | StretchyList named_stretchy_list() { |
| 169 | StretchyList out; |
| 170 | out.push_back( _["b"] = 1 ); |
| 171 | out.push_front( _["a"] = "foo" ); |
| 172 | out.push_back( _["c"] = 3.2 ); |
| 173 | return out; |
| 174 | } |
| 175 | |
| 176 | // [[Rcpp::export]] |
| 177 | void test_stop_variadic() { |
nothing calls this directly
no test coverage detected