[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Sema / block-printf-attribute-1.c
blob7652fab4095f00b47b497f5882498665941e40bd
1 // RUN: %clang_cc1 %s -fsyntax-only -verify -fblocks
3 #include <stdarg.h>
5 int main(void) {
6 void (^b) (int arg, const char * format, ...) __attribute__ ((__format__ (__printf__, 1, 3))) = // expected-error {{format argument not a string type}}
7 ^ __attribute__ ((__format__ (__printf__, 1, 3))) (int arg, const char * format, ...) {}; // expected-error {{format argument not a string type}}
9 void (^z) (int arg, const char * format, ...) __attribute__ ((__format__ (__printf__, 2, 3))) = ^ __attribute__ ((__format__ (__printf__, 2, 3))) (int arg, const char * format, ...) {};
11 z(1, "%s", 1); // expected-warning{{format specifies type 'char *' but the argument has type 'int'}}
12 z(1, "%s", "HELLO"); // no-warning
15 void multi_attr(va_list ap, int *x, long *y) {
16 // Handle block with multiple format attributes.
17 void (^vprintf_scanf) (const char *, va_list, const char *, ...) __attribute__((__format__(__printf__, 1, 0))) __attribute__((__format__(__scanf__, 3, 4))) =
18 ^ __attribute__((__format__(__printf__, 1, 0))) __attribute__((__format__(__scanf__, 3, 4))) (const char *str, va_list args, const char *fmt, ...) {};
20 vprintf_scanf("%", ap, "%d"); // expected-warning {{incomplete format specifier}}, expected-warning {{more '%' conversions than data arguments}}