1
2int		f(struct x *a);
3
4/* See r303485 */
5void
6t(void)
7{
8	static const struct {
9		int		a;
10		int		b;
11	}		c[] = {
12		{D, E},
13		{F, G}
14	};
15}
16
17void
18u(struct x a)
19{
20	int		b;
21	struct y	c = (struct y *)&a;
22}
23