clang/tests/fedora-flags/hello.cpp
Tom Stellard 13c66032d5 Import tests from tests/clang repository
It's not necessary to store the tests in a separate repository, since
other packages can just reference the tests in this repo.

Also update, the other tests to pull from git repos in the rpms namespace.
2021-04-14 22:02:41 +00:00

6 lines
70 B
C++

#include <iostream>
void hello() {
std::cout << "Hello World\n";
}