blob: 9131c27474c6281fa4b630b3d7b2cd10c545cf0a [file] [log] [blame]
package lib
type Type int
func (Type) Method(x *int) *int {
return x
}
func Func() {
}
const Const = 3
var Var = 0
type Sorter interface {
Len() int
Less(i, j int) bool
Swap(i, j int)
}