aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/opt/builtins1.C
blob: 8311436b223fb80510a3f3fcd5a189e7c3872dbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// PR c++/14791
// Test if builtins with FILE * arguments work
// { dg-options "-O2 -Wformat" }

typedef struct _FILE FILE;
FILE *stderr;
extern "C" int printf (__const char *__restrict, ...);
extern "C" int fprintf (FILE *__restrict, __const char *__restrict, ...);

int main ()
{
  printf ("%d\n", 1, 1);		// { dg-warning "too many arguments for format" }
  fprintf (stderr, "%d\n", 1, 1);	// { dg-warning "too many arguments for format" }
}