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