Chandler Carruth | b15be0d | 2010-08-05 03:16:33 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only -verify %s |
2 | |||||
3 | class 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 |