blob: 92b7cf517effea230d59cb699edb6f535427a4f6 [file] [log] [blame]
Shih-wei Liaof8fd82b2010-02-10 11:10:31 -08001// RUN: %clang_cc1 -fsyntax-only -verify %s
2
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}}