Sign in
android
/
platform
/
external
/
lldb
/
0d72cf6e46adfb00c0a8ec217ce31a38d61e4eb8
/
.
/
test
/
functionalities
/
watchpoint
/
variable_out_of_scope
/
main.c
blob: 1bf7a00ac837ef35c7a092cd12b629c076dd1912 [
file
] [
log
] [
blame
]
typedef
struct
{
int
a
;
float
b
;
}
mystruct
;
int
main
()
{
mystruct c
;
c
.
a
=
5
;
c
.
b
=
3.6
;
return
0
;
}