llvm-project/clang/test/SemaObjC/method-attributes.m

9 lines
206 B
Mathematica
Raw Normal View History

// RUN: clang -fsyntax-only %s
@class NSString;
@interface A
-t1 __attribute__((noreturn));
- (NSString *)stringByAppendingFormat:(NSString *)format, ... __attribute__((format(__NSString__, 1, 2)));
@end