mirror of https://github.com/go-python/gopy.git
test/structs: cosmetics
This commit is contained in:
parent
68eb738cbd
commit
9a38372a4e
|
@ -11,13 +11,14 @@ import (
|
|||
type S struct{}
|
||||
|
||||
func (S) Init() {}
|
||||
|
||||
func (S) Upper(s string) string {
|
||||
return strings.ToUpper(s)
|
||||
}
|
||||
|
||||
func FuncTest(item S) {}
|
||||
func FuncTest(S) {}
|
||||
|
||||
func (this S) MethodTest(item S1) {}
|
||||
func (S) MethodTest(item S1) {}
|
||||
|
||||
type S1 struct {
|
||||
private int
|
||||
|
|
Loading…
Reference in New Issue