blob: 71b7b5e21a956cd84f71d16105d1adbc4d8506d4 [file] [log] [blame]
/* PR debug/39412 */
/* { dg-do compile } */
struct S { int i; };
inline void
bar (const void *x, unsigned long y)
{
const union { struct S a[y]; } *u = x;
}
void
foo (const void *x, unsigned long y)
{
bar (x, y);
}