| 120 | std::unique_ptr<atyp> unique_ptr_roundtrip(std::unique_ptr<atyp> obj) { return obj; } |
| 121 | |
| 122 | std::string pass_unique_ptr_cref(const std::unique_ptr<atyp> &obj) { return obj->mtxt; } |
| 123 | |
| 124 | const std::unique_ptr<atyp> &rtrn_unique_ptr_cref(const std::string &mtxt) { |
| 125 | static std::unique_ptr<atyp> obj{new atyp{"static_ctor_arg"}}; |
nothing calls this directly
no outgoing calls
no test coverage detected