mirror of https://github.com/go-python/gopy.git
bind: extend funcs testcase
Change-Id: I1b3ddb93c41022ea255c00b61a0e371a120ac613
This commit is contained in:
parent
983aa8195c
commit
5327900302
|
@ -4,12 +4,27 @@
|
|||
|
||||
package funcs
|
||||
|
||||
var (
|
||||
F1 func()
|
||||
F2 Func
|
||||
F3 S1
|
||||
F4 S2
|
||||
F5 []func()
|
||||
F6 []Func
|
||||
F7 [2]func()
|
||||
F7 [2]Func
|
||||
)
|
||||
|
||||
type Func func()
|
||||
|
||||
type S1 struct {
|
||||
F Func
|
||||
F1 Func
|
||||
F2 []Func
|
||||
F3 [4]Func
|
||||
}
|
||||
|
||||
type S2 struct {
|
||||
F func()
|
||||
F1 func()
|
||||
F2 []func()
|
||||
F3 [4]func()
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue