Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / gcc.dg / pr108423-2.c
blob006e45a96298278eb151c758848dccd847442493
1 /* PR108423
2 * { dg-do compile }
3 * { dg-options "-O2" }
4 */
6 void f(int n, int (*a(void))[n])
8 (a())[0];
11 void g(void)
13 int (*a(void))[1];
14 f(1, a);