Home | History | Annotate | Download | only in expr.delete

Lines Matching defs:f0

9 void f0(T0 *a) { delete a; } // expected-warning {{deleting pointer to incomplete type}}
16 void f0() { T1_A<T1_B> x; } // expected-note {{in instantiation of member function}}
18 // This case depends on when we check T2_C::f0.
21 struct T2_B { void f0(T *a) { delete a; } };
22 struct T2_C { T2_B<T2_A> x; void f0(T2_A *a) { x.f0(a); } };
23 void f0(T2_A *a) { T2_C x; x.f0(a); }
30 void f0(T *a) {
37 void f0(T3_A *a) {
38 x.f0(a); // expected-note{{in instantiation of member function 'T3_B<T3_A>::f0' requested here}}
42 void f0(T3_A *a) { T3_C x; x.f0(a); }