Hack to make this test work on platforms which aren't Macs. Fixing this
[oota-llvm.git] / test / LLVMC / hello.mm
1 // Test that we can compile Objective-C++ code.
2 // RUN: llvmc %s -o %t
3 // RUN: ./%t | grep hello
4 #include <iostream>
5
6 int main() {
7     std::cout << "hello" << '\n';
8 }