blob: ede9515123c1a2c8a90315ce4b025bc4cf843d80 [file] [log] [blame]
Fariborz Jahanian1147c5e2009-12-14 17:36:25 +00001// RUN: clang -cc1 -fsyntax-only -fobjc-nonfragile-abi -verify %s
Steve Narofff4c00ff2009-03-03 22:09:41 +00002
3typedef signed char BOOL;
4
5@class NSInvocation, NSMethodSignature, NSCoder, NSString, NSEnumerator;
6
7@protocol NSObject
8- (BOOL)isEqual:(id)object;
9@end
10
11@interface NSObject <NSObject> {}
12@end
13
14@interface XCDeviceWillExecuteInfoBaton : NSObject {}
15 @property (retain) __attribute__((objc_gc(strong))) NSString *sdkPath;
16@end
17
18@implementation XCDeviceWillExecuteInfoBaton
Fariborz Jahanianaf3e7222009-03-31 00:06:29 +000019 @synthesize sdkPath;
Steve Narofff4c00ff2009-03-03 22:09:41 +000020@end
21