Projet_SETI_RISC-V/riscv-gnu-toolchain/gcc/gcc/testsuite/gcc.dg/c2x-old-style-definition-2.c
2023-03-06 14:48:14 +01:00

9 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;
{
}