mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
d3a1aefed9
llvm-svn: 81663
9 lines
171 B
Plaintext
9 lines
171 B
Plaintext
// 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';
|
|
}
|