| 529 | std::vector<int> data; |
| 530 | |
| 531 | Copyable(std::vector<int>&& data) : data(std::move(data)) {} |
| 532 | Copyable(const Copyable& that) = default; |
| 533 | Copyable& operator=(const Copyable&) = default; |
| 534 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected