From 76cb841cb886eef6b3bee341a2266c76578724ad Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 6 May 2024 03:02:30 +0200 Subject: Adding upstream version 4.19.249. Signed-off-by: Daniel Baumann --- tools/build/feature/test-cxx.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 tools/build/feature/test-cxx.cpp (limited to 'tools/build/feature/test-cxx.cpp') diff --git a/tools/build/feature/test-cxx.cpp b/tools/build/feature/test-cxx.cpp new file mode 100644 index 000000000..396aaedd2 --- /dev/null +++ b/tools/build/feature/test-cxx.cpp @@ -0,0 +1,16 @@ +// SPDX-License-Identifier: GPL-2.0 +#include +#include + +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; +} -- cgit v1.2.3