2009-12-15 20:14:24 +00:00
|
|
|
// RUN: %clang_cc1 %s -fsyntax-only -verify -fblocks
|
2009-05-19 17:08:59 +00:00
|
|
|
|
2012-01-25 00:55:11 +00:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
2022-02-03 16:39:21 -05:00
|
|
|
int main(void) {
|
2009-09-09 15:08:12 +00:00
|
|
|
void (^b) (int arg, const char * format, ...) __attribute__ ((__format__ (__printf__, 1, 3))) = // expected-error {{format argument not a string type}}
|
|
|
|
^ __attribute__ ((__format__ (__printf__, 1, 3))) (int arg, const char * format, ...) {}; // expected-error {{format argument not a string type}}
|
2009-05-19 17:08:59 +00:00
|
|
|
|
2009-09-09 15:08:12 +00:00
|
|
|
void (^z) (int arg, const char * format, ...) __attribute__ ((__format__ (__printf__, 2, 3))) = ^ __attribute__ ((__format__ (__printf__, 2, 3))) (int arg, const char * format, ...) {};
|
2009-05-19 17:08:59 +00:00
|
|
|
|
2012-01-20 21:52:58 +00:00
|
|
|
z(1, "%s", 1); // expected-warning{{format specifies type 'char *' but the argument has type 'int'}}
|
2010-02-16 01:46:59 +00:00
|
|
|
z(1, "%s", "HELLO"); // no-warning
|
2009-05-19 17:08:59 +00:00
|
|
|
}
|
2012-01-25 00:55:11 +00:00
|
|
|
|
|
|
|
void multi_attr(va_list ap, int *x, long *y) {
|
|
|
|
// Handle block with multiple format attributes.
|
|
|
|
void (^vprintf_scanf) (const char *, va_list, const char *, ...) __attribute__((__format__(__printf__, 1, 0))) __attribute__((__format__(__scanf__, 3, 4))) =
|
|
|
|
^ __attribute__((__format__(__printf__, 1, 0))) __attribute__((__format__(__scanf__, 3, 4))) (const char *str, va_list args, const char *fmt, ...) {};
|
|
|
|
|
|
|
|
vprintf_scanf("%", ap, "%d"); // expected-warning {{incomplete format specifier}}, expected-warning {{more '%' conversions than data arguments}}
|
|
|
|
}
|