xref: /freebsd/usr.bin/indent/tests/float.0.stdout (revision 214e3e09b3381e44bf5d9c1dcd19c4b1b923a796)
1void
2t(void)
3{
4	unsigned long	x = 314UL;
5	double		y[] = {0x1P+9F, 0.3, .1, 1.2f, 0xa.p01f, 3.14f, 2.L};
6	int		z = 0b0101;
7	DO_NOTHING;
8	x._y = 5;
9}
10