Searched refs:non_const_copy (Results 1 – 1 of 1) sorted by relevance
9 struct non_const_copy { struct10 non_const_copy(non_const_copy&);11 non_const_copy& operator = (non_const_copy&) &;12 non_const_copy& operator = (non_const_copy&) &&;13 non_const_copy() = default; // expected-note {{not viable}}16 non_const_copy::non_const_copy(non_const_copy&) = default; // expected-note {{not viable}} argument17 non_const_copy& non_const_copy::operator = (non_const_copy&) & = default; // expected-note {{not vi…18 non_const_copy& non_const_copy::operator = (non_const_copy&) && = default; // expected-note {{not v…25 non_const_copy ncc; in fn1()26 non_const_copy ncc2 = ncc; in fn1()[all …]