diff options
Diffstat (limited to 'llvm/test/LLVMC/ObjC++/hello.mm')
-rw-r--r-- | llvm/test/LLVMC/ObjC++/hello.mm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/llvm/test/LLVMC/ObjC++/hello.mm b/llvm/test/LLVMC/ObjC++/hello.mm new file mode 100644 index 00000000000..ff82e4af518 --- /dev/null +++ b/llvm/test/LLVMC/ObjC++/hello.mm @@ -0,0 +1,8 @@ +// Test that we can compile Objective-C++ code. +// RUN: llvmc %s -o %t +// RUN: ./%t | grep hello +#include <iostream> + +int main() { + std::cout << "hello" << '\n'; +} |