Searched refs:NonConstCopy (Results 1 – 8 of 8) sorted by relevance
8 struct NonConstCopy { struct9 NonConstCopy();10 NonConstCopy(NonConstCopy&);13 struct VirtualInheritsNonConstCopy : virtual NonConstCopy { 18 struct ImplicitNonConstCopy1 : NonConstCopy { // expected-note {{candidate constructor}}24 NonConstCopy ncc;29 NonConstCopy ncc_array[2][3];
8 struct NonConstCopy { struct9 NonConstCopy();10 NonConstCopy &operator=(NonConstCopy&);13 struct VirtualInheritsNonConstCopy : virtual NonConstCopy { 18 struct ImplicitNonConstCopy1 : NonConstCopy { // expected-note{{the implicit copy assignment opera…24 NonConstCopy ncc;29 NonConstCopy ncc_array[2][3];
16 struct NonConstCopy { struct17 NonConstCopy(NonConstCopy &);34 struct B : NonConstCopy { ConstCopy a; };35 struct C : ConstCopy { NonConstCopy a; };
16 struct NonConstCopy { struct17 NonConstCopy &operator=(NonConstCopy &);43 struct B : NonConstCopy { ConstCopy a; };44 struct C : ConstCopy { NonConstCopy a; };
31 struct NonConstCopy { struct32 NonConstCopy &operator=(NonConstCopy &) = default;34 using _ = not_trivially_assignable<NonConstCopy>;105 struct NCCTNT : NonConstCopy, TNT {};
28 struct NonConstCopy { struct29 NonConstCopy(NonConstCopy &) = default;31 using _ = not_trivially_copyable<NonConstCopy>;111 struct NCCTNT : NonConstCopy, TNT {};
102 struct NonConstCopy { struct103 NonConstCopy(const NonConstCopy&) = delete;104 NonConstCopy(NonConstCopy&);116 template void double_capture(NonConstCopy&);
11 class NonConstCopy { class13 NonConstCopy(NonConstCopy&); // expected-note{{would lose const}}16 void capture_by_copy(NonCopyable nc, NonCopyable &ncr, const NonConstCopy nco) { in capture_by_copy()