John McCall | d1e40d5 | 2011-10-02 01:16:38 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only -verify %s |
Steve Naroff | f4c00ff | 2009-03-03 22:09:41 +0000 | [diff] [blame] | 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 |
Fariborz Jahanian | af3e722 | 2009-03-31 00:06:29 +0000 | [diff] [blame] | 19 | @synthesize sdkPath; |
Steve Naroff | f4c00ff | 2009-03-03 22:09:41 +0000 | [diff] [blame] | 20 | @end |
| 21 | |