aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenObjC/PR4541.m
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGenObjC/PR4541.m')
-rw-r--r--test/CodeGenObjC/PR4541.m19
1 files changed, 0 insertions, 19 deletions
diff --git a/test/CodeGenObjC/PR4541.m b/test/CodeGenObjC/PR4541.m
deleted file mode 100644
index 84218a968c..0000000000
--- a/test/CodeGenObjC/PR4541.m
+++ /dev/null
@@ -1,19 +0,0 @@
-// 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
-
-