blob: 743d9b9ec1f2cf2d0d17a1e1bdae0340d73a8f27 [file] [log] [blame]
John Thompson1b2fc0f2009-11-25 22:58:06 +00001// RUN: clang-cc -fsyntax-only -verify %s
2
3class c {
4 virtual void f1(const char* a, ...)
5 __attribute__ (( __format__(__printf__,2,3) )) = 0;
6 virtual void f2(const char* a, ...)
7 __attribute__ (( __format__(__printf__,2,3) )) {}
8};
9