-- go.mod --
module example.com/errors

go 1.12
-- fixed/fixed.go --
package fixed

const X int = 12

-- broken/broken.go --
package broken

const X int = Missing

-- added/added.go --
package added

const X int = Missing
