...
Text file
src/cmd/go/testdata/mod/example.net_ambiguous_v0.1.0.txt
1Written by hand.
2
3Test module containing a package that is also provided by a nested module tagged
4with the same version.
5
6-- .mod --
7module example.net/ambiguous
8
9go 1.16
10-- .info --
11{"Version": "v0.1.0"}
12-- go.mod --
13module example.net/ambiguous
14
15go 1.16
16-- nested/pkg/pkg.go --
17// Package pkg exists in both example.net/ambiguous v0.1.0
18// and example.net/ambiguous/nested v0.1.0
19package pkg
View as plain text