2010-07-16 10:11:34 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -verify -Wformat-nonliteral %s
|
|
|
|
|
|
|
|
typedef __typeof(sizeof(int)) size_t;
|
|
|
|
typedef struct _FILE FILE;
|
|
|
|
|
|
|
|
int fscanf(FILE * restrict, const char * restrict, ...) ;
|
|
|
|
int scanf(const char * restrict, ...) ;
|
|
|
|
int sscanf(const char * restrict, const char * restrict, ...) ;
|
|
|
|
|
|
|
|
void test(const char *s, int *i) {
|
|
|
|
scanf(s, i); // expected-warning{{ormat string is not a string literal}}
|
2010-07-17 02:27:56 +08:00
|
|
|
scanf("%0d", i); // expected-warning{{zero field width in scanf format string is unused}}
|
|
|
|
scanf("%00d", i); // expected-warning{{zero field width in scanf format string is unused}}
|
2010-07-17 04:49:01 +08:00
|
|
|
scanf("%d%[asdfasdfd", i, s); // expected-warning{{no closing ']' for '%[' in scanf format string}}
|
2010-07-20 03:47:40 +08:00
|
|
|
|
|
|
|
unsigned short s_x;
|
|
|
|
scanf ("%" "hu" "\n", &s_x); // no-warning
|
2010-07-16 10:11:34 +08:00
|
|
|
}
|