• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Test that we can compile Objective-C++ code.
2// RUN: llvmc %s -o %t
3// RUN: %abs_tmp | grep hello
4#include <iostream>
5
6int main() {
7    std::cout << "hello" << '\n';
8}
9