Hans Wennborg | 5294c79 | 2011-12-28 13:10:50 +0000 | [diff] [blame^] | 1 | // RUN: %clang_cc1 -fsyntax-only -verify -pedantic -std=c++11 %s |
2 | |||||
3 | extern "C" { | ||||
4 | extern int scanf(const char *restrict, ...); | ||||
5 | extern int printf(const char *restrict, ...); | ||||
6 | } | ||||
7 | |||||
8 | void f(char **sp, float *fp) { | ||||
9 | scanf("%as", sp); // expected-warning{{conversion specifies type 'float *' but the argument has type 'char **'}} | ||||
10 | |||||
11 | printf("%a", 1.0); | ||||
12 | scanf("%afoobar", fp); | ||||
13 | } |