| 140 | virtual Movable get_movable(int a, int b) = 0; |
| 141 | |
| 142 | std::string print_nc(int a, int b) { return get_noncopyable(a, b).get_value(); } |
| 143 | std::string print_movable(int a, int b) { return get_movable(a, b).get_value(); } |
| 144 | }; |
| 145 | class NCVirtTrampoline : public NCVirt { |
nothing calls this directly
no test coverage detected