1 // RUN: %clang_cc1 -fsyntax-only -verify -pedantic -std=c++11 %s
4 extern int scanf(const char *restrict
, ...);
5 extern int printf(const char *restrict
, ...);
8 void f(char **sp
, float *fp
) {
9 scanf("%as", sp
); // expected-warning{{format specifies type 'float *' but the argument has type 'char **'}}
11 printf("%p", sp
); // expected-warning{{format specifies type 'void *' but the argument has type 'char **'}}
12 scanf("%p", sp
); // expected-warning{{format specifies type 'void **' but the argument has type 'char **'}}
15 scanf("%afoobar", fp
);
17 printf(*sp
); // expected-warning {{not a string literal}}
18 // expected-note@-1{{treat the string as an argument to avoid this}}
23 R
"bazquux(d)bazquux" // expected-warning {{more '%' conversions than data arguments}}
26 printf(u8
"this is %d test", 0); // ok
29 %d)foo" // expected-warning {{more '%' conversions than data arguments}}
32 printf("init list: %d", { 0 }); // expected-error {{cannot pass initializer list to variadic function; expected type from format string was 'int'}}
33 printf("void: %d", f(sp
, fp
)); // expected-error {{cannot pass expression of type 'void' to variadic function; expected type from format string was 'int'}}
34 printf(0, { 0 }); // expected-error {{cannot pass initializer list to variadic function}}