forked from OSchip/llvm-project
20 lines
387 B
Objective-C
20 lines
387 B
Objective-C
// RUN: clang-cc -o %t -w -g %s
|
|
|
|
|
|
@class NSString;
|
|
@interface NSAttributedString
|
|
- (NSString *)string;
|
|
@end
|
|
@interface NSMutableAttributedString : NSAttributedString
|
|
@end
|
|
@class NSImage;
|
|
@implementation CYObjectsController
|
|
+ (void)initialize {
|
|
}
|
|
+ (NSAttributedString *)attributedStringWithString:(id)string image:(NSImage *)image {
|
|
NSMutableAttributedString *attrStr;
|
|
}
|
|
@end
|
|
|
|
|