Shih-wei Liao | f8fd82b | 2010-02-10 11:10:31 -0800 | [diff] [blame^] | 1 | // RUN: %clang_cc1 -fsyntax-only -verify %s |
2 | struct S { | ||||
3 | 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 | }; |