xref: /freebsd/usr.bin/indent/tests/struct.0.stdout (revision e64fe029e9d3ce476e77a478318e0c3cd201ff08)
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