Lines Matching refs:Abstract
3 typedef struct { int y; } Abstract; typedef
10 @property Abstract *x; // expected-note {{using}}
14 @property Abstract *y; // expected-note {{using}}
18 @property Abstract *z; // expected-note {{using}}
31 Abstract *l = [a0 x]; // expected-warning {{multiple methods named 'x' found}}
35 Abstract *l = [a0 y]; // expected-warning {{multiple methods named 'y' found}}
39 Abstract *l = [a0 z]; // expected-warning {{multiple methods named 'z' found}}
42 void f3(id a0, Abstract *a1) {
46 void f4(id a0, Abstract *a1) {
50 void f5(id a0, Abstract *a1) {
56 Abstract *l = [a0 x];