Sign in
llvm
/
llvm-project
/
lldb
/
refs/heads/main
/
.
/
test
/
API
/
functionalities
/
valobj_errors
/
main.c
blob: fabdca9d3a2ecdfcc341cf92451eaf9a7fd51d54 [
file
] [
log
] [
blame
]
struct
Opaque
;
struct
Opaque
*
getOpaque
();
void
puts
(
const
char
*);
int
main
()
{
struct
Opaque
*
x
=
getOpaque
();
puts
(
"break here\n"
);
return
(
int
)
x
;
}