summary refs log tree commit diff
path: root/pkgs/test/cc-wrapper/cxx-main.cc
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/test/cc-wrapper/cxx-main.cc')
-rw-r--r--pkgs/test/cc-wrapper/cxx-main.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkgs/test/cc-wrapper/cxx-main.cc b/pkgs/test/cc-wrapper/cxx-main.cc
new file mode 100644
index 00000000000..83f704617a4
--- /dev/null
+++ b/pkgs/test/cc-wrapper/cxx-main.cc
@@ -0,0 +1,7 @@
+#include <iostream>
+
+int main(int argc, char **argv)
+{
+  std::cerr << "ok" << std::endl;
+  return 0;
+}