| 3 | #include <iostream> |
| 4 | #include <string> |
| 5 | int main() { |
| 6 | auto s1 = std::string { "abcd" }; |
| 7 | const auto s2 = s1; |
| 8 | const auto s3 = move(s1); |
| 9 | std::cout << s1.size() << " " |
| 10 | << s2.size() << " " << s3.size(); |
| 11 | } |
nothing calls this directly
no outgoing calls
no test coverage detected