aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenObjC/PR4541.m
blob: 9a651162c1e1a6aa603022767a4f4602015532b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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