blob: ae82cb7d929520f72ba8cbcef7eeaff93288a079 [file] [log] [blame]
Shih-wei Liaof8fd82b2010-02-10 11:10:31 -08001// RUN: %clang_cc1 -fsyntax-only -fobjc-nonfragile-abi -verify %s
2
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
19 @synthesize sdkPath;
20@end
21