NetBSD/regress/usr.bin/xlint/lint1/test15.c

11 lines
114 B
C
Raw Normal View History

/* GCC compound statements with void type */
void
main(void)
{
({
void *v;
__asm__ volatile("noop");
});
}