gcc/gcc/testsuite/gcc.dg/c2x-old-style-definition-2.c

10 lines
215 B
C

/* Test old-style function definitions not in C2x: errors. */
/* { dg-do compile } */
/* { dg-options "-std=c2x -pedantic-errors" } */
void
f (x) /* { dg-error "old-style function definition" } */
int x;
{
}