Home | History | Annotate | Download | only in SemaCXX

Lines Matching defs:Operators

125 class Operators {
126 Operators operator+(const Operators&) const; // expected-note{{member declaration does not match because it is const qualified}}
130 Operators Operators::operator+(const Operators&) { // expected-error{{out-of-line definition of 'operator+' does not match any declaration in 'Operators'}}
131 Operators ops;
135 Operators Operators::operator+(const Operators&) const {
136 Operators ops;
140 Operators::operator bool() {