Lines Matching full:operator
5 non_copiable& operator = (const non_copiable&) = delete; // expected-note {{explicitly deleted}}
11 non_const_copy& operator = (non_const_copy&) &;
12 non_const_copy& operator = (non_const_copy&) &&;
16 non_const_copy& non_const_copy::operator = (non_const_copy&) & = default; // expected-note {{not viable}}
17 non_const_copy& non_const_copy::operator = (non_const_copy&) && = default; // expected-note {{not viable}}
22 nc = nc; // expected-error {{deleted operator}}
35 non_const_derived& operator =(non_const_derived&) = default;
40 bad_decls&& operator = (bad_decls) = default; // expected-error {{lvalue reference}} expected-error {{must return 'bad_decls &'}}
41 bad_decls& operator = (volatile bad_decls&) = default; // expected-error {{may not be volatile}}
42 bad_decls& operator = (const bad_decls&) const = default; // expected-error {{may not have 'const', 'constexpr' or 'volatile' qualifiers}}