xref: /freebsd/usr.bin/indent/tests/float.0 (revision 2dc4dbb9673c9a3309c2dad59cb588c6f04beaea)
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}
8