1-- go.mod -- 2module example.com/errors 3 4go 1.12 5-- fixed/fixed.go -- 6package fixed 7 8const X int = 12 9 10-- broken/broken.go -- 11package broken 12 13const X int = Missing 14 15-- added/added.go -- 16package added 17 18const X int = Missing
View as plain text