llvm-project/lldb/test/functionalities/watchpoint/variable_out_of_scope/main.c

15 lines
136 B
C

typedef struct
{
int a;
float b;
} mystruct;
int main()
{
mystruct c;
c.a = 5;
c.b = 3.6;
return 0;
}