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