aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/format/no-exargs-1.c
blob: 75247087f28ad7d3aa35209b7da489d28f29f115 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* Test for warnings for extra format arguments being disabled by
   -Wno-format-extra-args.  */
/* Origin: Joseph Myers <jsm28@cam.ac.uk> */
/* { dg-do compile } */
/* { dg-options "-std=gnu99 -Wformat -Wno-format-extra-args" } */

#include "format.h"

void
foo (int i)
{
  printf ("foo", i);
  printf ("%1$d", i, i);
}