golangci-lint/test/testdata/exhaustive.go
2022-07-15 15:32:10 +02:00

18 lines
264 B
Go

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