Devang Patel | fe09eab | 2009-07-13 17:03:14 +0000 | [diff] [blame] | 1 | // 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 |