NetBSD/regress/usr.bin/xlint/lint1/test11.c

8 lines
110 B
C

/* GCC compound statements */
foo(unsigned long z)
{
z = ({ unsigned long tmp; tmp = 1; tmp; });
foo(z);
}