aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/c23-parm-omit-2.c
blob: 6ec44dad83a192980efa742a1ce57b04e358d6a6 (plain)
1
2
3
4
5
6
7
8
9
10
/* Test omitted parameter names in C23.  Warning test: there should be
   no warning for an unnamed parameter being unused.  */
/* { dg-do compile } */
/* { dg-options "-std=c23 -pedantic-errors -Wall -Wextra" } */

int
f (int a, int, int c, int d) /* { dg-warning "unused parameter 'd'" } */
{
  return a + c;
}