2012-02-18 21:15:42 +00:00
|
|
|
// run
|
2009-01-09 02:06:06 +00:00
|
|
|
|
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2012-02-23 07:47:26 +00:00
|
|
|
// Test methods on slices.
|
2009-01-09 02:06:06 +00:00
|
|
|
|
|
|
|
package main
|
|
|
|
|
2010-03-24 23:46:53 +00:00
|
|
|
type T []int
|
|
|
|
|
2009-01-09 02:06:06 +00:00
|
|
|
func (t T) Len() int { return len(t) }
|
|
|
|
|
2009-01-20 22:40:40 +00:00
|
|
|
type I interface {
|
2009-01-09 02:06:06 +00:00
|
|
|
Len() int
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
2010-03-24 23:46:53 +00:00
|
|
|
var t T = T{0, 1, 2, 3, 4}
|
|
|
|
var i I
|
|
|
|
i = t
|
2009-01-09 02:06:06 +00:00
|
|
|
if i.Len() != 5 {
|
2010-03-24 23:46:53 +00:00
|
|
|
println("i.Len", i.Len())
|
|
|
|
panic("fail")
|
2009-12-19 01:24:58 +00:00
|
|
|
}
|
|
|
|
if T.Len(t) != 5 {
|
2010-03-24 23:46:53 +00:00
|
|
|
println("T.Len", T.Len(t))
|
|
|
|
panic("fail")
|
2009-12-19 01:24:58 +00:00
|
|
|
}
|
|
|
|
if (*T).Len(&t) != 5 {
|
2010-03-24 23:46:53 +00:00
|
|
|
println("(*T).Len", (*T).Len(&t))
|
|
|
|
panic("fail")
|
2009-01-09 02:06:06 +00:00
|
|
|
}
|
|
|
|
}
|