mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 08:58:07 +00:00
16 lines
239 B
C++
16 lines
239 B
C++
|
#include <iostream>
|
||
|
#include <memory>
|
||
|
|
||
|
static void print_str(std::string s)
|
||
|
{
|
||
|
std::cout << s << std::endl;
|
||
|
}
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
std::string s("Hello World!");
|
||
|
print_str(std::move(s));
|
||
|
std::cout << "|" << s << "|" << std::endl;
|
||
|
return 0;
|
||
|
}
|