xref: /minix3/tests/usr.bin/xlint/lint1/d_gcc_compound_statements3.c (revision 11be35a165022172ed3cea20f2b5df0307540b0e)
1*11be35a1SLionel Sambuc /* GCC compound statements with void type */
2*11be35a1SLionel Sambuc 
3*11be35a1SLionel Sambuc void
main(void)4*11be35a1SLionel Sambuc main(void)
5*11be35a1SLionel Sambuc {
6*11be35a1SLionel Sambuc 	({
7*11be35a1SLionel Sambuc 		void *v;
8*11be35a1SLionel Sambuc 		__asm__ volatile("noop");
9*11be35a1SLionel Sambuc 	});
10*11be35a1SLionel Sambuc }
11