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