aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/functionalities/target_var/main.c
blob: cbc379d9f0933a8aeba891e41e14cc7bfef60ff5 (plain)
1
2
3
4
5
6
7
int i = 42;
int *p = &i;

struct incomplete;
struct incomplete *var = (struct incomplete *)0xdead;

int main() { return *p; }