Lines Matching refs:f4
61 static int f4(int);
63 static void f4(U);
78 x = Y0::f4(0); in f()
79 x = Y0::f4<int>(0); // expected-error {{assigning to 'int' from incompatible type 'void'}} in f()
80 x = Y0::template f4(0); // expected-error {{assigning to 'int' from incompatible type 'void'}} in f()
82 x = this->f4(0); in f()
83 x = this->f4<int>(0); // expected-error {{assigning to 'int' from incompatible type 'void'}} in f()
84 x = this->template f4(0); // expected-error {{assigning to 'int' from incompatible type 'void'}} in f()
105 static int f4(int);
107 static void f4(U);
122 x = Y1::f4(0); in f()
123 x = Y1::f4<int>(0); // expected-error {{assigning to 'int' from incompatible type 'void'}} in f()
124 x = Y1::template f4(0); // expected-error {{assigning to 'int' from incompatible type 'void'}} in f()
126 x = this->f4(0); in f()
127 x = this->f4<int>(0); // expected-error {{assigning to 'int' from incompatible type 'void'}} in f()
128 x = this->template f4(0); // expected-error {{assigning to 'int' from incompatible type 'void'}} in f()
151 x = Y1::f4(0); in f()
152 …x = Y1::f4<int>(0); // expected-error {{use 'template'}} expected-error {{assigning to 'int' from … in f()
153 x = Y1::template f4(0); // expected-error {{assigning to 'int' from incompatible type 'void'}} in f()
155 x = p->f4(0); in f()
156 …x = p->f4<int>(0); // expected-error {{assigning to 'int' from incompatible type 'void'}} expected… in f()
157 x = p->template f4(0); // expected-error {{assigning to 'int' from incompatible type 'void'}} in f()