mirror of
https://github.com/Cisco-Talos/clamav.git
synced 2026-02-07 13:31:36 -05:00
9 lines
157 B
C++
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';
|
|
}
|