Lines Matching defs:Operators
127 class Operators { // #defined-here-Operators
128 Operators operator+(const Operators&) const; // expected-note{{member declaration does not match because it is const qualified}}
132 Operators Operators::operator+(const Operators&) { // expected-error{{out-of-line definition of 'operator+' does not match any declaration in 'Operators'}}
133 // expected-note@#defined-here-Operators{{defined here}}
134 Operators ops;
138 Operators Operators::operator+(const Operators&) const {
139 Operators ops;
143 Operators::operator bool() {