llvm-6502/test/LLVMC/C++/hello.cpp
2009-09-13 01:39:08 +00:00

9 lines
157 B
C++

// Test that we can compile C++ code.
// RUN: llvmc %s -o %t
// RUN: ./%t | grep hello
#include <iostream>
int main() {
std::cout << "hello" << '\n';
}