1/*	$NetBSD: d_gcc_compound_statements3.c,v 1.2 2021/01/31 14:39:31 rillig Exp $	*/
2# 3 "d_gcc_compound_statements3.c"
3
4/* GCC compound statements with void type */
5
6void
7main(void)
8{
9	({
10		void *v;
11		__asm__ volatile("noop");
12	});
13}
14