summaryrefslogtreecommitdiff
path: root/test/hello_libcxx.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/hello_libcxx.cpp')
-rw-r--r--test/hello_libcxx.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/hello_libcxx.cpp b/test/hello_libcxx.cpp
new file mode 100644
index 000000000..445c5513b
--- /dev/null
+++ b/test/hello_libcxx.cpp
@@ -0,0 +1,8 @@
+#include <iostream>
+
+int main()
+{
+ std::cout << "hello, world!" << std::endl;
+ return 0;
+}
+