1*67e74705SXin Li// PR 14474 2*67e74705SXin Li// RUN: %clang_cc1 -triple i386-apple-macosx10.6.0 -emit-llvm \ 3*67e74705SXin Li// RUN: -debug-info-kind=line-tables-only -x objective-c++ -o /dev/null %s 4*67e74705SXin Li 5*67e74705SXin Litypedef signed char BOOL; 6*67e74705SXin Li@class NSInvocation, NSMethodSignature, NSCoder, NSString, NSEnumerator; 7*67e74705SXin Li@protocol NSObject - (BOOL)isEqual:(id)object; 8*67e74705SXin Li@end 9*67e74705SXin Li@protocol NSCoding - (void)encodeWithCoder:(NSCoder *)aCoder; 10*67e74705SXin Li@end 11*67e74705SXin Li@interface NSObject <NSObject> { } 12*67e74705SXin Li@end 13*67e74705SXin Li@interface NSResponder : NSObject <NSCoding> { } 14*67e74705SXin Li@end 15*67e74705SXin Li@protocol NSValidatedUserInterfaceItem - (SEL)action; 16*67e74705SXin Li@end 17*67e74705SXin Li@protocol NSUserInterfaceValidations - (BOOL)validateUserInterfaceItem:(id 18*67e74705SXin Li<NSValidatedUserInterfaceItem>)anItem; 19*67e74705SXin Li@end 20*67e74705SXin Li@interface NSRunningApplication : NSObject { } 21*67e74705SXin Li@end 22*67e74705SXin Li@interface NSApplication : NSResponder <NSUserInterfaceValidations> { } 23*67e74705SXin Li@end 24*67e74705SXin Li@implementation MockCrApp + (NSApplication*)sharedApplication { } 25*67e74705SXin Li@end 26