Lines Matching full:test1
7 @interface Test1 {}
8 - (void) test1:(A*) object; // expected-note {{previous definition is here}}
12 @implementation Test1
13 - (void) test1:(B*) object {} // expected-warning {{conflicting parameter types in implementation of 'test1:': 'A *' vs 'B *'}}
18 - (void) test1:(id) object; // expected-note {{previous definition is here}}
23 - (void) test1:(A*) object {} // expected-warning {{conflicting parameter types in implementation of 'test1:': 'id' vs 'A *'}}
28 - (A*) test1;
33 - (B*) test1 { return 0; }
39 - (id) test1;
43 - (A*) test1 { return 0; } // id -> A* is rdar://problem/8596987