...

Text file src/golang.org/x/exp/cmd/gorelease/testdata/mod/example.com_internalcompat_b_v1.0.0.txt

Documentation: golang.org/x/exp/cmd/gorelease/testdata/mod

     1-- go.mod --
     2module example.com/internalcompat/b
     3
     4go 1.15
     5
     6-- p/p.go --
     7package p
     8
     9import "example.com/internalcompat/b/q"
    10
    11var V q.Q
    12
    13-- q/q.go --
    14package q
    15
    16type Q struct{}

View as plain text