mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
cea934f803
The 'false.c' file wasn't being used. llvm-svn: 81709
11 lines
156 B
C
11 lines
156 B
C
#include <iostream>
|
|
|
|
extern "C" void test();
|
|
extern std::string test2();
|
|
|
|
int test_main() {
|
|
std::cout << "h";
|
|
test();
|
|
std::cout << test2() << '\n';
|
|
}
|