blob: 8f9609a746688a98a6bff7e70cf6b0ceb8a0293f [file] [log] [blame]
#import <PrivatelyReadwrite/PrivatelyReadwrite.h>
@interface PrivateSubclass : Base
@end
@interface PropertiesInit ()
@property (readwrite, nonnull) Base *readwriteChange;
@property (readwrite, nullable) Base *nullabilityChange;
@property (readwrite, nonnull) GenericClass *missingGenerics;
@property (readwrite, nonnull) PrivateSubclass *typeChange;
@end
@interface PropertiesNoInit ()
@property (readwrite, nonnull) Base *readwriteChange;
@property (readwrite, nullable) Base *nullabilityChange;
@property (readwrite, nonnull) GenericClass *missingGenerics;
@property (readwrite, nonnull) PrivateSubclass *typeChange;
@end
@interface PropertiesInitGeneric<T> ()
@property (readwrite, nonnull) Base *readwriteChange;
@property (readwrite, nullable) Base *nullabilityChange;
@property (readwrite, nonnull) GenericClass *missingGenerics;
@property (readwrite, nonnull) PrivateSubclass *typeChange;
@end
@interface PropertiesNoInitGeneric<T> ()
@property (readwrite, nonnull) Base *readwriteChange;
@property (readwrite, nullable) Base *nullabilityChange;
@property (readwrite, nonnull) GenericClass *missingGenerics;
@property (readwrite, nonnull) PrivateSubclass *typeChange;
@end
@interface PropertiesInitCategory ()
@property (readwrite, nonnull) Base *readwriteChange;
@property (readwrite, nullable) Base *nullabilityChange;
@property (readwrite, nonnull) GenericClass *missingGenerics;
@property (readwrite, nonnull) PrivateSubclass *typeChange;
@end
@interface PropertiesNoInitCategory ()
@property (readwrite, nonnull) Base *readwriteChange;
@property (readwrite, nullable) Base *nullabilityChange;
@property (readwrite, nonnull) GenericClass *missingGenerics;
@property (readwrite, nonnull) PrivateSubclass *typeChange;
@end