2015-08-07 07:23:09 +00:00
|
|
|
// Copyright 2015 The go-python Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package funcs
|
|
|
|
|
2015-08-07 07:28:29 +00:00
|
|
|
var (
|
|
|
|
F1 func()
|
|
|
|
F2 Func
|
|
|
|
F3 S1
|
|
|
|
F4 S2
|
|
|
|
F5 []func()
|
|
|
|
F6 []Func
|
|
|
|
F7 [2]func()
|
2015-08-07 16:26:12 +00:00
|
|
|
F8 [3]Func
|
2015-08-07 07:28:29 +00:00
|
|
|
)
|
|
|
|
|
2015-08-07 07:23:09 +00:00
|
|
|
type Func func()
|
|
|
|
|
|
|
|
type S1 struct {
|
2015-08-07 07:28:29 +00:00
|
|
|
F1 Func
|
|
|
|
F2 []Func
|
|
|
|
F3 [4]Func
|
2015-08-07 07:23:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type S2 struct {
|
2015-08-07 07:28:29 +00:00
|
|
|
F1 func()
|
|
|
|
F2 []func()
|
2015-08-07 16:26:12 +00:00
|
|
|
F3 [5]func()
|
2015-08-07 07:23:09 +00:00
|
|
|
}
|