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