rt_gccstream/gcc/testsuite/gcc.dg/stmt-expr-1.c

12 lines
247 B
C

/* Test diagnostic for GNU extension: statement expressions. Test
with no special options. */
/* Origin: Joseph Myers <joseph@codesourcery.com> */
/* { dg-do compile } */
/* { dg-options "-std=gnu99" } */
int
f (void)
{
return ({ 1; });
}