blob: f204a3a2aa493309eeb12b53fb1c139199dee384 (
plain)
1
2
3
4
5
6
7
8
9
|
/* Test old-style function definitions not in C23: warnings. */
/* { dg-do compile } */
/* { dg-options "-std=c23" } */
void
f (x) /* { dg-warning "old-style function definition" } */
int x;
{
}
|