23 lines · plain
1// RUN: %clang_cc1 -fsyntax-only -verify %s2// expected-no-diagnostics3 4typedef signed char BOOL;5 6@class NSInvocation, NSMethodSignature, NSCoder, NSString, NSEnumerator;7 8@protocol NSObject9- (BOOL)isEqual:(id)object;10@end11 12@interface NSObject <NSObject> {}13@end14 15@interface XCDeviceWillExecuteInfoBaton : NSObject {}16 @property (retain) __attribute__((objc_gc(strong))) NSString *sdkPath;17@end18 19@implementation XCDeviceWillExecuteInfoBaton20 @synthesize sdkPath; 21@end22 23