| 10 | struct atyp { // Short for "any type". |
| 11 | std::string mtxt; |
| 12 | atyp() : mtxt("DefaultConstructor") {} |
| 13 | explicit atyp(const std::string &mtxt_) : mtxt(mtxt_) {} |
| 14 | atyp(const atyp &other) { mtxt = other.mtxt + "_CpCtor"; } |
| 15 | atyp(atyp &&other) noexcept { mtxt = other.mtxt + "_MvCtor"; } |
no outgoing calls
no test coverage detected