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

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