...
Text file
src/cmd/go/testdata/mod/patch.example.com_direct_v1.0.1.txt
1patch.example.com/direct v1.0.1
2written by hand
3
4-- .mod --
5module patch.example.com/direct
6
7require (
8 patch.example.com/indirect v1.0.0
9 patch.example.com/depofdirectpatch v1.0.0
10)
11-- .info --
12{"Version":"v1.0.1"}
13-- go.mod --
14module patch.example.com/direct
15
16require (
17 patch.example.com/indirect v1.0.0
18 patch.example.com/depofdirectpatch v1.0.0
19)
20-- direct.go --
21package direct
22
23import _ "patch.example.com/indirect"
24-- usedepofdirectpatch/unused.go --
25package usedepofdirectpatch
26
27import _ "patch.example.com/depofdirectpatch"
View as plain text