1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 %s -fsyntax-only -verify -fblocks
2*f4a2713aSLionel Sambuc
3*f4a2713aSLionel Sambuc #include <stdarg.h>
4*f4a2713aSLionel Sambuc
main()5*f4a2713aSLionel Sambuc int main() {
6*f4a2713aSLionel Sambuc void (^b) (int arg, const char * format, ...) __attribute__ ((__format__ (__printf__, 1, 3))) = // expected-error {{format argument not a string type}}
7*f4a2713aSLionel Sambuc ^ __attribute__ ((__format__ (__printf__, 1, 3))) (int arg, const char * format, ...) {}; // expected-error {{format argument not a string type}}
8*f4a2713aSLionel Sambuc
9*f4a2713aSLionel Sambuc void (^z) (int arg, const char * format, ...) __attribute__ ((__format__ (__printf__, 2, 3))) = ^ __attribute__ ((__format__ (__printf__, 2, 3))) (int arg, const char * format, ...) {};
10*f4a2713aSLionel Sambuc
11*f4a2713aSLionel Sambuc z(1, "%s", 1); // expected-warning{{format specifies type 'char *' but the argument has type 'int'}}
12*f4a2713aSLionel Sambuc z(1, "%s", "HELLO"); // no-warning
13*f4a2713aSLionel Sambuc }
14*f4a2713aSLionel Sambuc
multi_attr(va_list ap,int * x,long * y)15*f4a2713aSLionel Sambuc void multi_attr(va_list ap, int *x, long *y) {
16*f4a2713aSLionel Sambuc // Handle block with multiple format attributes.
17*f4a2713aSLionel Sambuc void (^vprintf_scanf) (const char *, va_list, const char *, ...) __attribute__((__format__(__printf__, 1, 0))) __attribute__((__format__(__scanf__, 3, 4))) =
18*f4a2713aSLionel Sambuc ^ __attribute__((__format__(__printf__, 1, 0))) __attribute__((__format__(__scanf__, 3, 4))) (const char *str, va_list args, const char *fmt, ...) {};
19*f4a2713aSLionel Sambuc
20*f4a2713aSLionel Sambuc vprintf_scanf("%", ap, "%d"); // expected-warning {{incomplete format specifier}}, expected-warning {{more '%' conversions than data arguments}}
21*f4a2713aSLionel Sambuc }
22