Using 2.1.8
Having this struct:
type A struct {
Defaults string `yaml:"defaults"`
Others orderedmap.OrderedMap[string, string] `yaml:",inline"`
}
and this YAML:
defaults: "some defaults"
a: "a"
b: "b"
Expecting to get Others with only a and b keys inside, but getting full default, a, b set of keys:
https://go.dev/play/p/RTww5Itk3g4
Standard Go map works as I expect:
https://go.dev/play/p/_HkazAAFx-z