Home | History | Annotate | Download | only in SemaObjC

Lines Matching full:test17

397 @class Test17; // expected-note 2{{forward declaration of class here}}
399 - (void) test17;
400 + (void) test17;
402 void test17(void) {
403 Test17 *v0;
404 [v0 test17]; // expected-error {{receiver type 'Test17' for instance message is a forward declaration}}
406 Test17<Test17p> *v1;
407 [v1 test17]; // expected-error {{receiver type 'Test17<Test17p>' for instance message is a forward declaration}}
409 [Test17 test17]; // expected-error {{receiver 'Test17' for class message is a forward declaration}}