aboutsummaryrefslogtreecommitdiffstats
path: root/test/LLVMC/hello.mm
blob: 5f14a94cccab8db3379046e5253d5f0f43819fa8 (plain)
1
2
3
4
5
6
7
8
// Test that we can compile Objective-C++ code.
// RUN: llvmc2 %s -o %t
// RUN: ./%t | grep hello
#include <iostream>

int main() {
    std::cout << "hello" << '\n';
}