...
Text file
src/cmd/go/testdata/mod/example.net_pkgadded_v1.1.0.txt
1Written by hand.
2Test module with a root package added in v1.1.0
3and a subpackage added in v1.2.0.
4
5-- .mod --
6module example.net/pkgadded
7
8go 1.16
9-- .info --
10{"Version":"v1.1.0"}
11-- go.mod --
12module example.net/pkgadded
13
14go 1.16
15-- README.txt --
16We will add the package example.net/pkgadded/subpkg in v1.2.0.
17-- pkgadded.go --
18// Package pkgadded was added in v1.1.0.
19package pkgadded
View as plain text