]> git.saurik.com Git - apple/objc4.git/blobdiff - test/ARCBase.h
objc4-756.2.tar.gz
[apple/objc4.git] / test / ARCBase.h
diff --git a/test/ARCBase.h b/test/ARCBase.h
new file mode 100644 (file)
index 0000000..55722cf
--- /dev/null
@@ -0,0 +1,21 @@
+//
+//  ARCBase.h
+//  TestARCLayouts
+//
+//  Created by Patrick Beard on 3/8/11.
+//  Copyright 2011 __MyCompanyName__. All rights reserved.
+//
+
+#import <Foundation/NSObject.h>
+
+@interface ARCMisalign : NSObject {
+    char misalign1;
+}
+@end
+
+@interface ARCBase : ARCMisalign
+@property long number;
+@property(retain) id object;
+@property void *pointer;
+@property(weak) __weak id delegate;
+@end