1*11be35a1SLionel Sambuc /* GCC compound statements */ 2*11be35a1SLionel Sambuc foo(unsigned long z)3*11be35a1SLionel Sambucfoo(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