0% found this document useful (0 votes)
9 views

Mod Missingpkg Prerelease

Uploaded by

khalidgarage09
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views

Mod Missingpkg Prerelease

Uploaded by

khalidgarage09
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

env GO111MODULE=on

! go list -mod=mod -deps use.go


stderr '^use.go:4:2: package example.com/missingpkg/deprecated provided by
example.com/missingpkg at latest version v1.0.0 but not at required version v1.0.1-
beta$'

-- go.mod --
module m

go 1.14

-- use.go --
package use

import (
_ "example.com/missingpkg/deprecated"
_ "example.com/usemissingpre"
)

You might also like