perf bpf: Remove support for embedding clang for compiling BPF events (-e foo.c)
[sfrench/cifs-2.6.git] / tools / build / feature / test-cxx.cpp
diff --git a/tools/build/feature/test-cxx.cpp b/tools/build/feature/test-cxx.cpp
deleted file mode 100644 (file)
index 396aaed..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0
-#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;
-}