42 lines · plain
1// REQUIRES: x86-registered-target2// RUN: %clang_cc1 -triple i386-apple-darwin10 -fobjc-runtime=macosx-fragile-10.5 -fblocks -debug-info-kind=limited -S %s -o -3 4@implementation test5- (void)wait {6 ^{};7}8@end9 10// PR489411@interface I0 {12 I0 *_iv0;13}14@end15@protocol P0 @end16 17@interface I1 @end18@implementation I119- (I0<P0> *) im0 {20 // CHECK: @"\01-[I1 im0]"21 // CHECK: llvm.dbg.func.start22 return 0;23}24@end25 26// PR454127@class NSString;28@interface NSAttributedString 29- (NSString *)string;30@end 31@interface NSMutableAttributedString : NSAttributedString 32@end 33@class NSImage;34@implementation CYObjectsController 35+ (void)initialize {36}37+ (NSAttributedString *)attributedStringWithString:(id)string image:(NSImage *)image {38 NSMutableAttributedString *attrStr;39 return 0;40}41@end42