| ... | @@ -21246,8 +21246,8 @@ fn coerceInMemoryAllowed( | ... | @@ -21246,8 +21246,8 @@ fn coerceInMemoryAllowed( |
| 21246 | if (child != .ok) { | 21246 | if (child != .ok) { |
| 21247 | return InMemoryCoercionResult{ .optional_child = .{ | 21247 | return InMemoryCoercionResult{ .optional_child = .{ |
| 21248 | .child = try child.dupe(sema.arena), | 21248 | .child = try child.dupe(sema.arena), |
| 21249 | .actual = src_child_type, | 21249 | .actual = try src_child_type.copy(sema.arena), |
| 21250 | .wanted = dest_child_type, | 21250 | .wanted = try dest_child_type.copy(sema.arena), |
| 21251 | } }; | 21251 | } }; |
| 21252 | } | 21252 | } |
| 21253 | | 21253 | |