blob: 4a211bd240177ad4ee65e2e1680c65a30e4b2a12 [file] [log] [blame]
Eli Friedmane8a58822009-03-04 06:00:10 +00001// RUN: clang -fsyntax-only -triple x86_64-apple-darwin9 -verify %s
Steve Naroff92aeef32009-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
19 // No error is produced with compiling for -arch x86_64 (or "non-fragile" ABI)
20 @synthesize sdkPath;
21@end
22