blob: 9a651162c1e1a6aa603022767a4f4602015532b2 [file] [log] [blame]
Devang Patelfe09eab2009-07-13 17:03:14 +00001// RUN: clang-cc -o %t -w -g %s
2
3
4@class NSString;
5@interface NSAttributedString
6- (NSString *)string;
7@end
8@interface NSMutableAttributedString : NSAttributedString
9@end
10@class NSImage;
11@implementation CYObjectsController
12+ (void)initialize {
13}
14+ (NSAttributedString *)attributedStringWithString:(id)string image:(NSImage *)image {
15 NSMutableAttributedString *attrStr;
16}
17@end
18
19