etc/protocols - sync with NetBSD-8
[minix.git] / tests / usr.bin / xlint / lint1 / d_gcc_compound_statements1.c
blobd970be182648bdbfdb618232d1bbef2384a8852a
1 /* GCC compound statements */
3 foo(unsigned long z)
5 z = ({ unsigned long tmp; tmp = 1; tmp; });
6 foo(z);