1 struct s {
2 void *b;
3 long c;
4 };
5
6 long d(void);
7 static long f(void)
8 {
9 struct s s;
10 s.c = d();
11 if (s.c)
12 s.c = 2;
13 return s.c;
14 }
15
16 /*
17 * check-name: crash-select
18 */