1typedef struct
2{
3 int a;
4 float b;
5} mystruct;
6
7int main()
8{
9 mystruct c;
10
11 c.a = 5;
12 c.b = 3.6;
13
14 return 0;
15}

source code of lldb/test/API/commands/watchpoints/variable_out_of_scope/main.c