mirror of
https://github.com/scratchfoundation/golangci-lint.git
synced 2025-08-28 22:28:43 -04:00
ed64e33c8c8bc9a919e2b85a1a08225b5ae59d70. Also add tests for local mode of goimports and do refactoring of tests.
7 lines
133 B
Go
7 lines
133 B
Go
//args: -Eunparam
|
|
package testdata
|
|
|
|
func unparamUnused(a, b uint) uint { // ERROR "`unparamUnused` - `b` is unused"
|
|
a++
|
|
return a
|
|
}
|