xref: /llvm-project/lldb/test/API/functionalities/target_var/main.c (revision 7177e63fb554cfac3c252327e344fb5a17d6bd65)
1 int i = 42;
2 int *p = &i;
3 
4 struct incomplete;
5 struct incomplete *var = (struct incomplete *)0xdead;
6 
main()7 int main() { return *p; }
8