mirror of
https://github.com/opnsense/src.git
synced 2026-06-13 18:50:31 -04:00
8 lines
157 B
C++
8 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';
|
|
}
|