summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/oc/properties.m
blob: 4de60057f905b719196b4a05a9b83470e26815c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#define nonnull_strong nonnull, strong
#define myatomic nonatomic
@interface UCTestClass ()

@property (nonatomic, strong, null_unspecified, readonly) NSString* test1;
@property (strong, readonly, nonatomic, nullable) NSString* test2;
@property (strong, readonly, getter=test2Getter, nonatomic, nonnull) NSString* test3;
@property (strong, readonly, getter=test2Getter, nonatomic, setter=test2Setter:, null_resettable) NSString* test4;
@property (class, readonly, getter=test5Getter, nonatomic, nonnull, assign) NSString* test5;
@property (class, assign, getter=test5Getter, myatomic, nonnull_strong) NSString* test6;

@end