blob: 7d297508c519007ee5fe3334956874d192c483f6 [file] [log] [blame]
@import Foundation;
@interface Test : NSObject
@property (nonnull, readonly) NSArray *nonnullArray;
@property (nullable, readonly) NSArray *nullableArray;
@property (null_unspecified, readonly) NSArray *nullUnspecifiedArray;
@property (nonnull, readonly) NSDictionary *nonnullDictionary;
@property (nonnull, readonly) NSSet *nonnullSet;
@property (nonnull, readonly) NSString *nonnullString;
@property (class, nonnull, readonly) NSString *nonnullSharedString;
// Subscripts still have thunks wrapped around them.
- (nonnull NSArray *)objectAtIndexedSubscript:(long)index;
@end