blob: a3148c3c164f1facaf6cc2ab5bcf34547a67d486 [file] [log] [blame]
Mikhail Glushenkov0ed79202008-05-06 18:11:21 +00001// Test that we can compile C++ code.
Mikhail Glushenkovd6228882008-05-06 18:15:12 +00002// RUN: llvmc2 %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}