blob: 4b45ea945e0134c05176d8454d08a2fc5e67917b [file] [log] [blame]
Mikhail Glushenkov0ed79202008-05-06 18:11:21 +00001// Test that we can compile C++ code.
Mikhail Glushenkov434816d2008-05-06 18:13:00 +00002// RUN: llvmc2 --linker=c++ %s -o %t
Mikhail Glushenkov0ed79202008-05-06 18:11:21 +00003// RUN: ./%t | grep hello
4#include <iostream>
5
6int main() {
7 std::cout << "hello" << '\n';
8}