]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - contrib/netbsd-tests/usr.bin/xlint/lint1/d_gcc_compound_statements1.c
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / contrib / netbsd-tests / usr.bin / xlint / lint1 / d_gcc_compound_statements1.c
1 /* GCC compound statements */
2
3 foo(unsigned long z)
4 {
5         z = ({ unsigned long tmp; tmp = 1; tmp; });
6         foo(z);
7 }