aboutsummaryrefslogtreecommitdiff
path: root/tests/hello_libcxx.cpp
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2012-01-18 11:35:00 -0800
committerAlon Zakai <alonzakai@gmail.com>2012-01-18 11:35:00 -0800
commit20ce1c2c6e47303ad259b53dee7d2da5e308f496 (patch)
tree85b1b4a55761fe8d76426fd2797012b88609c5d6 /tests/hello_libcxx.cpp
parentc381523b1c1916316f945404630a6e59f7de36b5 (diff)
automatically use libcxx when needed
Diffstat (limited to 'tests/hello_libcxx.cpp')
-rw-r--r--tests/hello_libcxx.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/hello_libcxx.cpp b/tests/hello_libcxx.cpp
new file mode 100644
index 00000000..445c5513
--- /dev/null
+++ b/tests/hello_libcxx.cpp
@@ -0,0 +1,8 @@
+#include <iostream>
+
+int main()
+{
+ std::cout << "hello, world!" << std::endl;
+ return 0;
+}
+