xref: /freebsd/usr.bin/indent/tests/struct.0 (revision 12a88a3d637e7e7a3726e8dedbcf82cb96cea529)
1/* $FreeBSD$ */
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