| 66 | // clang-format off |
| 67 | |
| 68 | atyp rtrn_valu() { atyp obj{"rtrn_valu"}; return obj; } |
| 69 | atyp&& rtrn_rref() { static atyp obj; obj.mtxt = "rtrn_rref"; return std::move(obj); } |
| 70 | atyp const& rtrn_cref() { static atyp obj; obj.mtxt = "rtrn_cref"; return obj; } |
| 71 | atyp& rtrn_mref() { static atyp obj; obj.mtxt = "rtrn_mref"; return obj; } |
nothing calls this directly
no outgoing calls
no test coverage detected