2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.dg / format / no-exargs-1.c
blob75247087f28ad7d3aa35209b7da489d28f29f115
1 /* Test for warnings for extra format arguments being disabled by
2 -Wno-format-extra-args. */
3 /* Origin: Joseph Myers <jsm28@cam.ac.uk> */
4 /* { dg-do compile } */
5 /* { dg-options "-std=gnu99 -Wformat -Wno-format-extra-args" } */
7 #include "format.h"
9 void
10 foo (int i)
12 printf ("foo", i);
13 printf ("%1$d", i, i);