Wang Nan | 87095f7 | 2016-09-26 07:26:56 +0000 | [diff] [blame] | 1 | #include <iostream> |
2 | #include <memory> | ||||
3 | |||||
4 | static void print_str(std::string s) | ||||
5 | { | ||||
6 | std::cout << s << std::endl; | ||||
7 | } | ||||
8 | |||||
9 | int main() | ||||
10 | { | ||||
11 | std::string s("Hello World!"); | ||||
12 | print_str(std::move(s)); | ||||
13 | std::cout << "|" << s << "|" << std::endl; | ||||
14 | return 0; | ||||
15 | } |