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