blob: ff82e4af518d9ecd56c31d1b8494eea8220c014d [file] [log] [blame]
// 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';
}