blob: b5681217e24b6d3b8fadf1b69de6f6d4625395e8 [file] [log] [blame]
/* APPLE LOCAL file 6157135 */
/* Check for declaration and usage of 'format' __NSString sttribuet where number of
first variarg is 0 */
/* { dg-options "-Wformat" } */
/* { dg-do compile } */
#include <Foundation/Foundation.h>
@interface MyClass
- (id)initWithFormat:(NSString *)format arguments:(va_list)argList __attribute__((format(__NSString__, 1, 0)));
@end
void FOO (MyClass* p)
{
[p initWithFormat:(NSString *)nil arguments: 0];
}