Anders Carlsson | 4fb7720 | 2009-08-25 14:12:34 +0000 | [diff] [blame] | 1 | // RUN: clang-cc -fsyntax-only -verify %s |
2 | struct S { | ||||
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 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 | }; |