Home | History | Annotate | Line # | Download | only in lint1
d_gcc_compound_statements1.c revision 1.2
      1 /*	$NetBSD: d_gcc_compound_statements1.c,v 1.2 2021/01/31 14:39:31 rillig Exp $	*/
      2 # 3 "d_gcc_compound_statements1.c"
      3 
      4 /* GCC compound statements */
      5 
      6 foo(unsigned long z)
      7 {
      8 	z = ({ unsigned long tmp; tmp = 1; tmp; });
      9 	foo(z);
     10 }
     11