blob: 3684cb00ebb441e2a7f6b4770c9bd6d58198161a [file] [log] [blame]
John McCalld1e40d52011-10-02 01:16:38 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Andy Gibbs8e8fb3b2012-10-19 12:44:48 +00002// expected-no-diagnostics
Steve Narofff4c00ff2009-03-03 22:09:41 +00003
4typedef signed char BOOL;
5
6@class NSInvocation, NSMethodSignature, NSCoder, NSString, NSEnumerator;
7
8@protocol NSObject
9- (BOOL)isEqual:(id)object;
10@end
11
12@interface NSObject <NSObject> {}
13@end
14
15@interface XCDeviceWillExecuteInfoBaton : NSObject {}
16 @property (retain) __attribute__((objc_gc(strong))) NSString *sdkPath;
17@end
18
19@implementation XCDeviceWillExecuteInfoBaton
Fariborz Jahanianaf3e7222009-03-31 00:06:29 +000020 @synthesize sdkPath;
Steve Narofff4c00ff2009-03-03 22:09:41 +000021@end
22