@@ -116,7 +116,7 @@ type SpecificCases struct {
116
116
117
117
// other map types
118
118
MapToDeepCopyPtr map [string ]DeepCopyPtr `json:"mapToDeepCopyPtr"`
119
- MapToDeepCopyNonPtr map [string ]DeepCopyPtr `json:"mapToDeepCopyNonPtr"`
119
+ MapToDeepCopyNonPtr map [string ]DeepCopyNonPtr `json:"mapToDeepCopyNonPtr"`
120
120
MapToDeepCopyIntoPtr map [string ]DeepCopyIntoPtr `json:"mapToDeepCopyIntoPtr"`
121
121
MapToDeepCopyIntoNonPtr map [string ]DeepCopyIntoNonPtr `json:"mapToDeepCopyIntoNonPtr"`
122
122
MapToShallowNamedType map [string ]TotallyAString `json:"mapToShallowNamedType"`
@@ -129,7 +129,7 @@ type SpecificCases struct {
129
129
130
130
// other slice types
131
131
SliceToDeepCopyPtr []DeepCopyPtr `json:"sliceToDeepCopyPtr"`
132
- SliceToDeepCopyNonPtr []DeepCopyPtr `json:"sliceToDeepCopyNonPtr"`
132
+ SliceToDeepCopyNonPtr []DeepCopyNonPtr `json:"sliceToDeepCopyNonPtr"`
133
133
SliceToDeepCopyIntoPtr []DeepCopyIntoPtr `json:"sliceToDeepCopyIntoPtr"`
134
134
SliceToDeepCopyIntoNonPtr []DeepCopyIntoNonPtr `json:"sliceToDeepCopyIntoNonPtr"`
135
135
SliceToShallowNamedType []TotallyAString `json:"sliceToShallowNamedType"`
@@ -138,7 +138,7 @@ type SpecificCases struct {
138
138
139
139
// other pointer types
140
140
PtrToDeepCopyPtr * DeepCopyPtr `json:"ptrToDeepCopyPtr"`
141
- PtrToDeepCopyNonPtr * DeepCopyPtr `json:"ptrToDeepCopyNonPtr"`
141
+ PtrToDeepCopyNonPtr * DeepCopyNonPtr `json:"ptrToDeepCopyNonPtr"`
142
142
PtrToDeepCopyIntoPtr * DeepCopyIntoPtr `json:"ptrToDeepCopyIntoPtr"`
143
143
PtrToDeepCopyIntoNonPtr * DeepCopyIntoNonPtr `json:"ptrToDeepCopyIntoNonPtr"`
144
144
PtrToShallowNamedType * TotallyAString `json:"ptrToShallowNamedType"`
0 commit comments