Lines Matching full:test17
400 @class Test17; // expected-note 2{{forward declaration of class here}}
402 - (void) test17;
403 + (void) test17;
405 void test17(void) {
406 Test17 *v0;
407 [v0 test17]; // expected-error {{receiver type 'Test17' for instance message is a forward declaration}}
409 Test17<Test17p> *v1;
410 [v1 test17]; // expected-error {{receiver type 'Test17<Test17p>' for instance message is a forward declaration}}
412 [Test17 test17]; // expected-error {{receiver 'Test17' for class message is a forward declaration}}
417 [x test18]; // expected-error {{instance method 'test18' not found ; did you mean 'test17'?}}