Sign in
llvm
/
llvm-project
/
lldb
/
7edf9870efffd28248f2c96b5de955d18000767f
/
.
/
test
/
API
/
lang
/
cpp
/
expr-definition-in-dylib
/
lib.cpp
blob: 1a08817f5cda1caea1b3990d16e8c34aa5e15d94 [
file
] [
log
] [
blame
]
#include
"lib.h"
#include
<cstdio>
int
Foo
::
method
()
{
return
-
72
;
}
Foo
::
Foo
()
{
std
::
puts
(
__func__
);
}
Foo
::~
Foo
()
{
std
::
puts
(
__func__
);
}
Bar
::
Bar
()
{
std
::
puts
(
__func__
);
}
Bar
::~
Bar
()
{
std
::
puts
(
__func__
);
}