Home | History | Annotate | Download | only in SemaObjC

Lines Matching full:void

4 extern void doSomething();
9 void (^aBlock)(void);
11 @property (retain) void (^aBlock)(void); // expected-warning {{retain'ed block property does not copy the block - use copy attribute instead}}
12 @property (weak, retain) void (^aBlockW)(void); // expected-error {{property attributes 'retain' and 'weak' are mutually exclusive}}
13 @property (strong, retain) void (^aBlockS)(void); // OK
14 @property (readonly, retain) void (^aBlockR)(void); // OK
15 @property (copy, retain) void (^aBlockC)(void); // expected-error {{property attributes 'copy' and 'retain' are mutually exclusive}}
16 @property (assign, retain) void (^aBlockA)(void); // expected-error {{property attributes 'assign' and 'retain' are mutually exclusive}}