2011-12-28 21:10:50 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -verify -pedantic %s
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
extern int scanf(const char *restrict, ...);
|
|
|
|
extern int printf(const char *restrict, ...);
|
|
|
|
}
|
|
|
|
|
|
|
|
void f(char **sp, float *fp) {
|
|
|
|
// TODO: Warn that the 'a' length modifier is an extension.
|
|
|
|
scanf("%as", sp);
|
|
|
|
|
|
|
|
// TODO: Warn that the 'a' conversion specifier is a C++11 feature.
|
|
|
|
printf("%a", 1.0);
|
|
|
|
scanf("%afoobar", fp);
|
|
|
|
}
|
2012-01-31 22:59:59 +08:00
|
|
|
|
|
|
|
void g() {
|
|
|
|
printf("%ls", "foo"); // expected-warning{{format specifies type 'wchar_t *' but the argument has type 'const char *'}}
|
|
|
|
}
|