diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-11-22 17:37:03 +0100 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-11-22 17:40:53 +0100 |
commit | a2e9b91822f681a2ae6e745f72daf2d6f14d3f5c (patch) | |
tree | b7ec94ab840a2d20f29489f0bdd3234b797e7477 /tests/hello_libcxx_mod1.cpp | |
parent | f27cac856b0ec9670615fbe08666e02e2450300b (diff) |
test for mixed jcache results
Diffstat (limited to 'tests/hello_libcxx_mod1.cpp')
-rw-r--r-- | tests/hello_libcxx_mod1.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/hello_libcxx_mod1.cpp b/tests/hello_libcxx_mod1.cpp new file mode 100644 index 00000000..2389b1ef --- /dev/null +++ b/tests/hello_libcxx_mod1.cpp @@ -0,0 +1,9 @@ +#include <iostream> + +int main() +{ + std::cout << "hello, world!" << std::endl; + std::cout << "hello, world!" << std::endl; + return 0; +} + |