2009-12-16 04:14:24 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -fobjc-nonfragile-abi -verify %s
|
2009-03-04 06:09:41 +08:00
|
|
|
|
|
|
|
typedef signed char BOOL;
|
|
|
|
|
|
|
|
@class NSInvocation, NSMethodSignature, NSCoder, NSString, NSEnumerator;
|
|
|
|
|
|
|
|
@protocol NSObject
|
|
|
|
- (BOOL)isEqual:(id)object;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface NSObject <NSObject> {}
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface XCDeviceWillExecuteInfoBaton : NSObject {}
|
|
|
|
@property (retain) __attribute__((objc_gc(strong))) NSString *sdkPath;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation XCDeviceWillExecuteInfoBaton
|
2009-03-31 08:06:29 +08:00
|
|
|
@synthesize sdkPath;
|
2009-03-04 06:09:41 +08:00
|
|
|
@end
|
|
|
|
|