Lines Matching full:instance
37 access = s->private; // expected-error {{instance variable 'private' is private}}
41 access = m->private; // expected-error {{instance variable 'private' is private}}
55 access = s->private; // expected-error {{instance variable 'private' is private}}
59 access = m->private; // expected-error {{instance variable 'private' is private}}
71 access = s->unmarked; // expected-error {{instance variable 'unmarked' is protected}}
72 access = s->private; // expected-error {{instance variable 'private' is private}}
73 access = s->protected; // expected-error {{instance variable 'protected' is protected}}
75 access = m->unmarked; // expected-error {{instance variable 'unmarked' is protected}}
76 access = m->private; // expected-error {{instance variable 'private' is private}}
77 access = m->protected; // expected-error {{instance variable 'protected' is protected}}
85 access = s->unmarked; // expected-error {{instance variable 'unmarked' is protected}}
86 access = s->private; // expected-error {{instance variable 'private' is private}}
87 access = s->protected; // expected-error {{instance variable 'protected' is protected}}