forked from OSchip/llvm-project
11 lines
157 B
C
11 lines
157 B
C
|
#include <iostream>
|
||
|
|
||
|
extern "C" void test();
|
||
|
extern std::string test2();
|
||
|
|
||
|
int main() {
|
||
|
std::cout << "h";
|
||
|
test();
|
||
|
std::cout << test2() << '\n';
|
||
|
}
|