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