blob: 2125dc76b7222aab72bb0566c446a370594443b4 [file] [log] [blame]
// Test that we can compile Objective-C++ code.
// RUN: llvmc %s -o %t
// RUN: %abs_tmp | grep hello
#include <iostream>
int main() {
std::cout << "hello" << '\n';
}