1 /* { dg-do compile } */
2 /* { dg-options "-O3 -Wall" } */
3 /* based on PR 37861 */
5 extern int printf (__const
char *__restrict __format
, ...);
7 static int f2(char formatstr
[10][100])
10 for( anz
= 0; anz
< 10; ++anz
) {
11 printf( "%d %s\n", anz
, formatstr
[anz
] );
17 static char formatstr
[10][100];