golangci-lint/test/testdata/interfacer.go
2018-08-18 23:04:27 +03:00

9 lines
140 B
Go

// args: -Einterfacer
package testdata
import "io"
func InterfacerCheck(f io.ReadCloser) { // ERROR "`f` can be `io.Closer`"
f.Close()
}