Home | History | Annotate | Download | only in SemaObjC
      1 // RUN: %clang_cc1 -fsyntax-only -verify %s
      2 
      3 typedef 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 
     22