xref: /freebsd/usr.bin/indent/tests/struct.0.stdout (revision b3e7694832e81d7a904a10f525f8797b753bf0d3)
1/* $FreeBSD$ */
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
19u(struct x a)
20{
21	int		b;
22	struct y	c = (struct y *)&a;
23}
24