1/* $FreeBSD: stable/11/usr.bin/indent/tests/struct.0.stdout 313544 2017-02-10 09:31:39Z pstef $ */
2/* See r303485 */
3void
4t(void)
5{
6	static const struct {
7		int		a;
8		int		b;
9	}		c[] = {
10		{D, E},
11		{F, G}
12	};
13}
14