Package shift defines an Analyzer that checks for shifts that exceed the width of an integer.
const Doc = "check for shifts that equal or exceed the width of the integer"
var Analyzer = &analysis.Analyzer{ Name: "shift", Doc: Doc, Requires: []*analysis.Analyzer{inspect.Analyzer}, Run: run, }