llvm/lldb/test/API/commands/watchpoints/variable_out_of_scope/main.c

typedef struct
{
    int a;
    float b;
} mystruct;

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