blob: ff82e4af518d9ecd56c31d1b8494eea8220c014d [file] [log] [blame]
Daniel Dunbar77e0c852008-11-08 03:25:47 +00001// Test that we can compile Objective-C++ code.
Mikhail Glushenkov113ec352008-11-25 21:38:12 +00002// RUN: llvmc %s -o %t
Daniel Dunbar77e0c852008-11-08 03:25:47 +00003// RUN: ./%t | grep hello
4#include <iostream>
5
6int main() {
7 std::cout << "hello" << '\n';
8}