blob: 8188ba5b55f4b3ee43359385fdd1b6b3a6e8e540 [file] [log] [blame]
Daniel Dunbar8fbe78f2009-12-15 20:14:24 +00001// RUN: %clang_cc1 %s -fsyntax-only -verify -fblocks
Fariborz Jahanian960910a2009-05-19 17:08:59 +00002
Mike Stump11289f42009-09-09 15:08:12 +00003int main() {
4 void (^b) (int arg, const char * format, ...) __attribute__ ((__format__ (__printf__, 1, 3))) = // expected-error {{format argument not a string type}}
5 ^ __attribute__ ((__format__ (__printf__, 1, 3))) (int arg, const char * format, ...) {}; // expected-error {{format argument not a string type}}
Fariborz Jahanian960910a2009-05-19 17:08:59 +00006
Mike Stump11289f42009-09-09 15:08:12 +00007 void (^z) (int arg, const char * format, ...) __attribute__ ((__format__ (__printf__, 2, 3))) = ^ __attribute__ ((__format__ (__printf__, 2, 3))) (int arg, const char * format, ...) {};
Fariborz Jahanian960910a2009-05-19 17:08:59 +00008
Ted Kremeneke7b9d432012-01-20 21:52:58 +00009 z(1, "%s", 1); // expected-warning{{format specifies type 'char *' but the argument has type 'int'}}
Ted Kremenekc8b188d2010-02-16 01:46:59 +000010 z(1, "%s", "HELLO"); // no-warning
Fariborz Jahanian960910a2009-05-19 17:08:59 +000011}