blob: 8f38306e9e961c78438795b977218ffac0a8b1fb [file] [log] [blame]
// Test that we can compile C++ code.
// RUN: llvmc %s -o %t
// RUN: %abs_tmp | grep hello
// XFAIL: vg
#include <iostream>
int main() {
std::cout << "hello" << '\n';
}