delve/_fixtures/vendor/dir.io/dir.go
aarzilli dc7a4ccb16 proc: support interface type resolution for packages containing a dot
If the last entry of the package path contains a '.' the corresponding
DIEs for its types will replace the '.' character with '%2e'. We must
do the same when resolving the package path of the concrete type of an
interface variable.

Fixes #1137
2018-03-05 10:07:11 -08:00

6 lines
47 B
Go

package dirio
type SomeType struct {
X int
}