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