xref: /freebsd/usr.bin/indent/tests/struct.0 (revision 7fdf597e96a02165cfe22ff357b857d5fa15ed8a)
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 u(struct x a) {
18	int b;
19	struct y c = (struct y *)&a;
20}
21