2008-11-08 03:25:47 +00:00
|
|
|
// Test that we can compile Objective-C++ code.
|
2008-11-25 21:38:12 +00:00
|
|
|
// RUN: llvmc %s -o %t
|
2009-09-13 01:40:48 +00:00
|
|
|
// RUN: %abs_tmp | grep hello
|
2008-11-08 03:25:47 +00:00
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
std::cout << "hello" << '\n';
|
|
|
|
}
|