Sign in
llvm
/
llvm-project
/
ba767d0bbbde4107700ff66ecfd97eb75d85a35d
/
.
/
lldb
/
test
/
API
/
tools
/
lldb-dap
/
memory
/
main.cpp
blob: 26467daea4f6cef6a9f733bb553f07c8855cd729 [
file
]
int
main
()
{
int
not_a_ptr
=
666
;
const
char
*
rawptr
=
"dead"
;
// Immutable variable, .rodata region.
static
const
int
nonWritable
=
100
;
// Breakpoint
return
0
;
}