]> git.saurik.com Git - apple/ld64.git/blobdiff - unit-tests/test-cases/objc-category-optimize/cat1.m
ld64-274.1.tar.gz
[apple/ld64.git] / unit-tests / test-cases / objc-category-optimize / cat1.m
index 11c170b656d1a58e0cdf1632d7f2eb72ab2c0751..3652fca8372140c5db6ffde1b05959ea5f635bf0 100644 (file)
@@ -14,6 +14,8 @@
 #if PROPERTIES
        @property(readonly) int property1;
        @property(readonly) int property2;
+       @property(class,readonly) int property3;
+       @property(class,readonly) int property4;
 #endif
 @end
 
@@ -24,6 +26,8 @@
 #if PROPERTIES
        -(int) property1 { return 0; }
        -(int) property2 { return 0; }
+       +(int) property3 { return 0; }
+       +(int) property4 { return 0; }
 #endif
 @end