2009-01-08 19:06:06 -07:00
|
|
|
// $G $D/$F.go && $L $F.$A && ./$A.out || echo BUG method3
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
// test that methods on slices work
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
2009-01-20 15:40:40 -07:00
|
|
|
type T [] int
|
2009-01-08 19:06:06 -07:00
|
|
|
func (t T) Len() int { return len(t) }
|
|
|
|
|
2009-01-20 15:40:40 -07:00
|
|
|
type I interface {
|
2009-01-08 19:06:06 -07:00
|
|
|
Len() int
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
2009-03-03 09:39:12 -07:00
|
|
|
var t T = T{0,1,2,3,4};
|
2009-01-08 19:06:06 -07:00
|
|
|
var i I;
|
|
|
|
i = t;
|
|
|
|
if i.Len() != 5 {
|
|
|
|
panicln("length", i.Len());
|
|
|
|
}
|
|
|
|
}
|