aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/warn/format1.C
blob: 27bc414b098aed820a198b1670aa5c0cc18ad0a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Test that formats get checked according to C94.
// Origin: Joseph Myers <jsm28@cam.ac.uk>.
// { dg-do compile }
// { dg-options "-ansi -pedantic -Wformat" }

#include <cstdio>

void
foo (int i, int *ip, __WINT_TYPE__ lc, wchar_t *ls)
{
  std::printf ("%d%ls%lc\n", i, ls, lc);
  std::printf ("%d", ls); // { dg-warning "format" "printf warning" }
  std::scanf ("%d%lc%ls%l[abc]", ip, ls, ls, ls);
  std::scanf ("%hd", ip); // { dg-warning "format" "scanf warning" }
}