golangci-lint/test/testdata/exhaustive.go
dependabot[bot] 7fb302126a
build(deps): bump github.com/nishanths/exhaustive from 0.8.3 to 0.9.2 (#3381)
Co-authored-by: Fernandez Ludovic <ldez@users.noreply.github.com>
2022-11-27 16:54:20 +01:00

18 lines
290 B
Go

//golangcitest:args -Eexhaustive
package testdata
type Direction int
const (
North Direction = iota
East
South
West
)
func processDirection(d Direction) {
switch d { // want "missing cases in switch of type testdata.Direction: testdata.East, testdata.West"
case North, South:
}
}