xref: /minix3/tests/usr.bin/xlint/lint1/d_gcc_compound_statements1.c (revision 11be35a165022172ed3cea20f2b5df0307540b0e)
1*11be35a1SLionel Sambuc /* GCC compound statements */
2*11be35a1SLionel Sambuc 
foo(unsigned long z)3*11be35a1SLionel Sambuc foo(unsigned long z)
4*11be35a1SLionel Sambuc {
5*11be35a1SLionel Sambuc 	z = ({ unsigned long tmp; tmp = 1; tmp; });
6*11be35a1SLionel Sambuc 	foo(z);
7*11be35a1SLionel Sambuc }
8