Sign in
llvm
/
llvm-project
/
ba767d0bbbde4107700ff66ecfd97eb75d85a35d
/
.
/
lldb
/
test
/
API
/
functionalities
/
data-formatter
/
synth_oneline_summaries
/
main.c
blob: 947be634f5b9b6acb281e4749d054ec9b62669ca [
file
]
struct
MyString
{
const
char
*
guts
;
};
struct
S
{
struct
MyString
a
;
struct
MyString
b
;
};
void
stop
()
{}
int
main
()
{
struct
S s
;
s
.
a
.
guts
=
"hello"
;
s
.
b
.
guts
=
"world"
;
stop
();
// break here
return
0
;
}