blob: c1987c42b403374e62faa55e8faf6fb9c0f2e685 [file] [log] [blame]
/* PR108423
* { dg-do compile }
* { dg-options "-O2" }
*/
void f(int n, int (*(*b)(void))[n])
{
sizeof (*(*b)());
}
int (*a(void))[1];
void g(void)
{
f(1, &a);
}