Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / gcc.dg / pr109409.c
blob097a511c07edaea23a75268f5f2d510543599601
1 /* PR c/109409 */
2 /* { dg-do compile } */
3 /* { dg-options "-Wall" } */
5 void
6 foo (int n)
8 const char c[n] = "1"; /* { dg-error "variable-sized object may not be initialized except with an empty initializer" } */
9 __builtin_printf (c);