Sign in
llvm
/
llvm-project
/
890c4bece26e005cd9fa5511fe0efa7307794de5
/
.
/
lldb
/
test
/
API
/
commands
/
expression
/
import-std-module
/
shared_ptr-dbg-info-content
/
main.cpp
blob: 73664f1c83a417c168bcbc24d5e340e860f6fe02 [
file
] [
log
] [
blame
]
#include
<memory>
struct
Foo
{
int
a
;
};
int
main
(
int
argc
,
char
**
argv
)
{
std
::
shared_ptr
<
Foo
>
s
(
new
Foo
);
s
->
a
=
3
;
return
s
->
a
;
// Set break point at this line.
}