1 /* Test for bugs with %z and %Z formats. See PRs c/89, c/156, c/376. */
2 /* Origin: Joseph Myers <jsm28@cam.ac.uk> */
3 /* { dg-do compile } */
4 /* { dg-options "-Wformat" } */
12 scanf ("%zu", &t
); /* { dg-bogus "length|format" "bogus scanf warning" } */
19 printf ("%zu\n", t
); /* { dg-bogus "format" "bogus printf warning" } */
22 /* The %Z printf format is an old GNU libc extension to do the same thing. */
27 printf ("%Zu\n", t
); /* { dg-bogus "format" "bogus printf warning" } */