blob: 192193a6dfdcb466fb6b2b0825700f7ad799c27b [file] [log] [blame]
Shih-wei Liaof8fd82b2010-02-10 11:10:31 -08001// RUN: %clang_cc1 -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