test/structs: cosmetics

This commit is contained in:
Sebastien Binet 2016-01-12 14:19:09 +01:00
parent 68eb738cbd
commit 9a38372a4e
1 changed files with 3 additions and 2 deletions

View File

@ -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