Newer
Older
UbixOS / contrib / netbsd-tests / usr.bin / xlint / lint1 / d_gcc_compound_statements1.c
@Charlie Root Charlie Root on 31 Dec 2017 110 bytes More Cleanup
/* GCC compound statements */

foo(unsigned long z)
{
	z = ({ unsigned long tmp; tmp = 1; tmp; });
	foo(z);
}