2009-12-16 04:14:24 +08:00
|
|
|
// RUN: %clang_cc1 %s -fsyntax-only -verify -fblocks
|
2009-05-20 01:08:59 +08:00
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
int main() {
|
|
|
|
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-20 01:08:59 +08:00
|
|
|
|
2009-09-09 23:08:12 +08: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-20 01:08:59 +08:00
|
|
|
|
2010-02-16 09:46:59 +08:00
|
|
|
z(1, "%s", 1); // expected-warning{{conversion specifies type 'char *' but the argument has type 'int'}}
|
|
|
|
z(1, "%s", "HELLO"); // no-warning
|
2009-05-20 01:08:59 +08:00
|
|
|
}
|