Text file
src/cmd/go/testdata/mod/example.com_cmd_v1.0.0-newerself.txt
1 example.com/cmd contains main packages.
2
3 -- .info --
4 {"Version":"v1.0.0-newerself"}
5 -- .mod --
6 module example.com/cmd
7
8 go 1.16
9
10 require example.com/cmd v1.0.0
11 -- go.mod --
12 module example.com/cmd
13
14 go 1.16
15
16 require example.com/cmd v1.0.0
17 -- a/a.go --
18 package main
19
20 func main() {}
21 -- b/b.go --
22 package main
23
24 func main() {}
25 -- err/err.go --
26 package err
27
28 var X = DoesNotCompile
29
View as plain text