Files
clang-p2996/llvm/test/LLVMC/test_data/false.c
Mikhail Glushenkov 20ef60e1ab 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';
}