Searched refs:NonConstCopy (Results 1 – 16 of 16) 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];
9 struct NonConstCopy { struct10 NonConstCopy();11 NonConstCopy &operator=(NonConstCopy&);14 struct VirtualInheritsNonConstCopy : virtual NonConstCopy { 19 struct ImplicitNonConstCopy1 : NonConstCopy { // expected-note{{the implicit copy assignment opera…25 NonConstCopy ncc;30 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 {};
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];
101 struct NonConstCopy { struct102 NonConstCopy(const NonConstCopy&) = delete;103 NonConstCopy(NonConstCopy&);115 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()