1
0
mirror of https://github.com/mgechev/revive.git synced 2024-11-21 17:16:40 +02:00
revive/testdata/function_result_limit.go
2024-11-11 19:31:18 +01:00

18 lines
341 B
Go

package fixtures
func foo() (a, b, c, d) { // MATCH /maximum number of return results per function exceeded; max 3 but got 4/
var a, b, c, d int
}
func bar(a, b int) {
}
func baz(a string, b int) {
}
func qux() (string, string, int, string, int) { // MATCH /maximum number of return results per function exceeded; max 3 but got 5/
}