summaryrefslogtreecommitdiffstats
path: root/lldb/test/functionalities/watchpoint/variable_out_of_scope/main.c
blob: 1bf7a00ac837ef35c7a092cd12b629c076dd1912 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
typedef struct
{
    int a;
    float b;
} mystruct;

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