blob: 00c1bb7c9f270454ab77463c27bb1979848f6432 [file] [log] [blame]
/* PR sanitizer/80460 */
/* { dg-do compile } */
int
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" } */
{
return c.b[0];
}