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