reflect: FuncOf support more than 50 arguments

Fixes #54669

Change-Id: I34cbe729d187437ddeafbaa910af6ed001b2603f
Reviewed-on: https://go-review.googlesource.com/c/go/+/425461
Reviewed-by: Ian Lance Taylor <iant@google.com>
Reviewed-by: Cherry Mui <cherryyz@google.com>
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gopher Robot <gobot@golang.org>
Run-TryBot: Ian Lance Taylor <iant@google.com>
Auto-Submit: Ian Lance Taylor <iant@google.com>
This commit is contained in:
cuiweixie 2022-08-25 14:41:23 +08:00 committed by Gopher Robot
parent 2eba2ff8a1
commit d7a3fa120d
2 changed files with 8 additions and 3 deletions

View file

@ -6258,6 +6258,13 @@ func TestFuncOf(t *testing.T) {
FuncOf([]Type{TypeOf(1), TypeOf(""), SliceOf(TypeOf(false))}, nil, true)
shouldPanic("must be slice", func() { FuncOf([]Type{TypeOf(0), TypeOf(""), TypeOf(false)}, nil, true) })
shouldPanic("must be slice", func() { FuncOf(nil, nil, true) })
//testcase for #54669
var in []Type
for i := 0; i < 51; i++ {
in = append(in, TypeOf(1))
}
FuncOf(in, nil, false)
}
type B1 struct {