blob: 05548f63668aae086b7c909449ea0bd5df2a552b [file] [log] [blame]
# The directory named go.mod should be ignored
env GO111MODULE=on
cd $WORK/sub
go list .
stdout 'x/sub'
mkdir go.mod
exists go.mod
go list .
stdout 'x/sub'
-- $WORK/go.mod --
module x
-- $WORK/sub/x.go --
package x