allwinner_a64/lichee/linux-4.9/tools/build/feature/test-cxx.cpp
2018-08-08 14:16:19 +08:00

15 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;
}