2011-10-02 09:16:38 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
2012-10-19 20:44:48 +08:00
|
|
|
// expected-no-diagnostics
|
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
|
|
|
|
|