blob: 8603b30900162d763d3562c512eabce268ddb987 [file] [log] [blame]
Chandler Carruthb15be0d2010-08-05 03:16:33 +00001// 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