Delete invalid assignment statements in do_sendfile
[linux/fpc-iii.git] / tools / build / feature / test-cxx.cpp
blob396aaedd2418dd650ab8ad33c845855db9806694
1 // SPDX-License-Identifier: GPL-2.0
2 #include <iostream>
3 #include <memory>
5 static void print_str(std::string s)
7 std::cout << s << std::endl;
10 int main()
12 std::string s("Hello World!");
13 print_str(std::move(s));
14 std::cout << "|" << s << "|" << std::endl;
15 return 0;