Sign in
llvm
/
llvm-project
/
lldb
/
refs/heads/master
/
.
/
test
/
API
/
lang
/
cpp
/
function-call-from-object-file
/
main.cpp
blob: 61ca798daf1df1d0f8d05e8dea0baa90bd69867e [
file
] [
log
] [
blame
] [
edit
]
struct
Foo
;
extern
void
lib1_func
(
Foo
*);
extern
void
lib2_func
(
Foo
*);
int
main
()
{
lib1_func
(
nullptr
);
lib2_func
(
nullptr
);
return
0
;
}