xref: /llvm-project/lldb/test/API/commands/watchpoints/variable_out_of_scope/main.c (revision 99451b4453688a94c6014cac233d371ab4cc342d)
1 typedef struct
2 {
3     int a;
4     float b;
5 } mystruct;
6 
main()7 int main()
8 {
9     mystruct c;
10 
11     c.a = 5;
12     c.b = 3.6;
13 
14     return 0;
15 }