blob: 92b7cf517effea230d59cb699edb6f535427a4f6 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Sebastian Redl4a2614e2009-11-17 18:02:24 +00002
3// PR5521
4struct A { void a(const char*,...) __attribute((format(printf,2,3))); };
5void b(A x) {
6 x.a("%d", 3);
7}
8struct X { void a(const char*,...) __attribute((format(printf,1,3))); }; // expected-error {{format argument not a string type}}