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