Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:Operators

123 class Operators {
124 Operators operator+(const Operators&) const; // expected-note{{member declaration does not match because it is const qualified}}
128 Operators Operators::operator+(const Operators&) { // expected-error{{out-of-line definition of 'operator+' does not match any declaration in 'Operators'}}
129 Operators ops;
133 Operators Operators::operator+(const Operators&) const {
134 Operators ops;
138 Operators::operator bool() {