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