Home | History | Annotate | Download | only in class.abstract

Lines Matching full:operator

23   virtual E &operator=(const E &); // expected-note {{here}}
24 virtual F &operator=(const F &);
25 virtual G &operator=(G&&); // expected-note {{here}}
26 virtual H &operator=(H&&); // expected-note {{here}}
30 D &operator=(const D&) = default;
31 D &operator=(D&&) = default;
35 // expected-error {{deleted function 'operator=' cannot override a non-deleted function}}
38 // expected-error@-1 {{deleted function 'operator=' cannot override a non-deleted function}}
40 H &operator=(H&&) = default; // expected-error {{deleted function 'operator=' cannot override a non-deleted function}}