]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - contrib/netbsd-tests/usr.bin/xlint/lint1/d_gcc_compound_statements3.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_statements3.c
1 /* GCC compound statements with void type */
2
3 void
4 main(void)
5 {
6         ({
7                 void *v;
8                 __asm__ volatile("noop");
9         });
10 }