llvm-project/llvm/test/LLVMC/test_data/false.c

11 lines
156 B
C
Raw Normal View History

2009-09-13 09:36:19 +08:00
#include <iostream>
extern "C" void test();
extern std::string test2();
int test_main() {
std::cout << "h";
test();
std::cout << test2() << '\n';
2009-09-13 09:36:19 +08:00
}