1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-24 13:33:37 +02:00
llvm-mirror/test/LLVMC/test_data/false.c
Mikhail Glushenkov cea934f803 Fix a small issue with recent changes to this code.
The 'false.c' file wasn't being used.

llvm-svn: 81709
2009-09-13 20:14:57 +00:00

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';
}