blob: 3dec8a8fd81bc3509c4f96cde3145546dbcce7d6 [file] [log] [blame]
Steve Naroff92aeef32009-03-03 22:09:41 +00001// RUN: clang -fsyntax-only -arch x86_64 -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 // No error is produced with compiling for -arch x86_64 (or "non-fragile" ABI)
20 @synthesize sdkPath;
21@end
22