blob: 9359c7b1f99aaaddb38fdafb1c43cd5d11dfbe35 [file] [log] [blame]
Hans Wennborg5294c792011-12-28 13:10:50 +00001// RUN: %clang_cc1 -fsyntax-only -verify -pedantic -std=c++11 %s
2
3extern "C" {
4extern int scanf(const char *restrict, ...);
5extern int printf(const char *restrict, ...);
6}
7
8void f(char **sp, float *fp) {
Ted Kremenekce506ae2012-01-20 21:52:58 +00009 scanf("%as", sp); // expected-warning{{format specifies type 'float *' but the argument has type 'char **'}}
Hans Wennborg5294c792011-12-28 13:10:50 +000010
11 printf("%a", 1.0);
12 scanf("%afoobar", fp);
13}