blob: 1f01c279161ce9df12e427260832a5fb6d72327c [file] [log] [blame]
-- 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 = "no longer an int"
-- added/added.go --
package added
const X int = "not an int"