1static union {
2  int i;
3};
4
5int *ip;
6
7void g() {
8  ip = &i;
9}
10