1 /* $NetBSD: d_gcc_compound_statements1.c,v 1.4 2021/03/27 13:59:18 rillig Exp $ */ 2 # 3 "d_gcc_compound_statements1.c" 3 4 /* GCC compound statement with expression */ 5 6 foo(unsigned long z) 7 { 8 z = ({ 9 unsigned long tmp; 10 tmp = 1; 11 tmp; 12 }); 13 foo(z); 14 } 15