1
0
mirror of https://github.com/mgechev/revive.git synced 2025-11-25 22:12:38 +02:00
Files
revive/testdata/argument_limit_default.go

8 lines
184 B
Go

package fixtures
func foo(a, b, c, d, e, f, g, h int) {
}
func bar(a, b, c, d, e, f, g, h, i int64) { // MATCH /maximum number of arguments per function exceeded; max 8 but got 9/
}