1 /* PR sanitizer/80460 */
2 /* { dg-do compile } */
3 
4 int
f(int a,struct{ int b[a]; } c)5 f (int a, struct { int b[a]; } c) /* { dg-warning "anonymous struct declared inside parameter list will not be visible outside of this definition or declaration" } */
6 {
7   return c.b[0];
8 }
9