...

Text file src/cmd/go/testdata/mod/example.com_ambiguous_a_v1.0.0.txt

Documentation: cmd/go/testdata/mod

     1Module example.com/ambiguous/a is a prefix of example.com/a/b.
     2It contains package example.com/a/b.
     3-- .mod --
     4module example.com/ambiguous/a
     5
     6go 1.16
     7
     8require example.com/ambiguous/a/b v0.0.0-empty
     9-- .info --
    10{"Version":"v1.0.0"}
    11-- go.mod --
    12module example.com/ambiguous/a
    13
    14go 1.16
    15
    16require example.com/ambiguous/a/b v0.0.0-empty
    17-- b/b.go --
    18package b

View as plain text