mirror of
https://github.com/scratchfoundation/golangci-lint.git
synced 2025-08-28 22:28:43 -04:00
9 lines
141 B
Go
9 lines
141 B
Go
package testdata
|
|
|
|
import "log" // nolint:depguard
|
|
|
|
func Unconvert() {
|
|
a := 1
|
|
b := int(a) // ERROR "unnecessary conversion"
|
|
log.Print(b)
|
|
}
|