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