If a field in the struct being copied is a struct has the same name in the struct being copied to, but the field in the struct being copied to is not a struct but a simple type, previously we would get a panic.
This change just has the code fall through the attempt at copying the struct into the simple field. Patch includes new test demonstrating this behavior, all tests pass.
If a field in the struct being copied is a struct has the same name in the struct being copied to, but the field in the struct being copied to is not a struct but a simple type, previously we would get a panic.
This change just has the code fall through the attempt at copying the struct into the simple field. Patch includes new test demonstrating this behavior, all tests pass.