aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/go/testdata/mod/example.net_ambiguous_v0.1.0.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/go/testdata/mod/example.net_ambiguous_v0.1.0.txt')
-rw-r--r--src/cmd/go/testdata/mod/example.net_ambiguous_v0.1.0.txt19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/cmd/go/testdata/mod/example.net_ambiguous_v0.1.0.txt b/src/cmd/go/testdata/mod/example.net_ambiguous_v0.1.0.txt
new file mode 100644
index 0000000000..8fa6d83346
--- /dev/null
+++ b/src/cmd/go/testdata/mod/example.net_ambiguous_v0.1.0.txt
@@ -0,0 +1,19 @@
+Written by hand.
+
+Test module containing a package that is also provided by a nested module tagged
+with the same version.
+
+-- .mod --
+module example.net/ambiguous
+
+go 1.16
+-- .info --
+{"Version": "v0.1.0"}
+-- go.mod --
+module example.net/ambiguous
+
+go 1.16
+-- nested/pkg/pkg.go --
+// Package pkg exists in both example.net/ambiguous v0.1.0
+// and example.net/ambiguous/nested v0.1.0
+package pkg