summaryrefslogtreecommitdiffstats
path: root/tests/cpp-compiler/cpp-compile.cpp
blob: 543b7e0bed7bebd52c12e8bb41f80d0980ffc42f (plain)
1
2
3
4
5
6
7
8
9
// TEST(smoke):CPP_COMPILER_EXECUTE:
#include <iostream>
using namespace std;

int main(int argc, char** argv)
{
    cout << "Hello World!" << endl;
    return 0;
}