mirror of
https://github.com/scratchfoundation/golangci-lint.git
synced 2025-07-13 21:24:25 -04:00
7 lines
144 B
Go
7 lines
144 B
Go
//golangcitest:args -Eunparam
|
|
package testdata
|
|
|
|
func unparamUnused(a, b uint) uint { // want "`unparamUnused` - `b` is unused"
|
|
a++
|
|
return a
|
|
}
|