blob: 84218a968cc8971dfd135052bb7a4cc6a5b9e1d3 [file] [log] [blame]
// RUN: %clang_cc1 -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