Codebase list golang-github-imdario-mergo / run/e1fcb303-93b9-485d-b119-c5ef1c4f3e29/main issue174_test.go
run/e1fcb303-93b9-485d-b119-c5ef1c4f3e29/main

Tree @run/e1fcb303-93b9-485d-b119-c5ef1c4f3e29/main (Download .tar.gz)

issue174_test.go @run/e1fcb303-93b9-485d-b119-c5ef1c4f3e29/mainraw · history · blame

package mergo_test

import (
	"testing"

	"github.com/imdario/mergo"
)

type structWithBlankField struct {
	_ struct{}
	A struct{}
}

func TestIssue174(t *testing.T) {
	dst := structWithBlankField{}
	src := structWithBlankField{}

	if err := mergo.Merge(&dst, src, mergo.WithOverride); err != nil {
		t.Error(err)
	}
}