1/* $FreeBSD: stable/12/usr.bin/indent/tests/struct.0 334564 2018-06-03 16:21:15Z pstef $ */
2
3int f(struct x *a);
4
5/* See r303485 */
6void
7t(void)
8{
9	static const struct {
10		int	a;
11		int	b;
12	} c[] = {
13		{ D, E },
14		{ F, G }
15	};
16}
17
18void u(struct x a) {
19	int b;
20	struct y c = (struct y *)&a;
21}
22