blob: 0c1eb53ea07fbaa8166485fbe1d7d36415aeeae5 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Anders Carlsson4fb77202009-08-25 14:12:34 +00002struct S {
Mike Stump1eb44332009-09-09 15:08:12 +00003 static void f(const char*, ...) __attribute__((format(printf, 1, 2)));
4
5 // GCC has a hidden 'this' argument in member functions which is why
6 // the format argument is argument 2 here.
7 void g(const char*, ...) __attribute__((format(printf, 2, 3)));
8};