Rémy Oudompheng | 2ece2f5 | 2012-02-18 22:15:42 +0100 | [diff] [blame] | 1 | // run |
Russ Cox | e512481 | 2009-01-08 18:06:06 -0800 | [diff] [blame] | 2 | |
| 3 | // Copyright 2009 The Go Authors. All rights reserved. |
| 4 | // Use of this source code is governed by a BSD-style |
| 5 | // license that can be found in the LICENSE file. |
| 6 | |
Rob Pike | 501f0b5 | 2012-02-23 18:47:26 +1100 | [diff] [blame] | 7 | // Test methods on slices. |
Russ Cox | e512481 | 2009-01-08 18:06:06 -0800 | [diff] [blame] | 8 | |
| 9 | package main |
| 10 | |
Rob Pike | 325cf8e | 2010-03-24 16:46:53 -0700 | [diff] [blame] | 11 | type T []int |
| 12 | |
Russ Cox | e512481 | 2009-01-08 18:06:06 -0800 | [diff] [blame] | 13 | func (t T) Len() int { return len(t) } |
| 14 | |
Russ Cox | 839a684 | 2009-01-20 14:40:40 -0800 | [diff] [blame] | 15 | type I interface { |
Russ Cox | e512481 | 2009-01-08 18:06:06 -0800 | [diff] [blame] | 16 | Len() int |
| 17 | } |
| 18 | |
| 19 | func main() { |
Rob Pike | 325cf8e | 2010-03-24 16:46:53 -0700 | [diff] [blame] | 20 | var t T = T{0, 1, 2, 3, 4} |
| 21 | var i I |
| 22 | i = t |
Russ Cox | e512481 | 2009-01-08 18:06:06 -0800 | [diff] [blame] | 23 | if i.Len() != 5 { |
Rob Pike | 325cf8e | 2010-03-24 16:46:53 -0700 | [diff] [blame] | 24 | println("i.Len", i.Len()) |
| 25 | panic("fail") |
Russ Cox | 0d66825 | 2009-12-18 17:24:58 -0800 | [diff] [blame] | 26 | } |
| 27 | if T.Len(t) != 5 { |
Rob Pike | 325cf8e | 2010-03-24 16:46:53 -0700 | [diff] [blame] | 28 | println("T.Len", T.Len(t)) |
| 29 | panic("fail") |
Russ Cox | 0d66825 | 2009-12-18 17:24:58 -0800 | [diff] [blame] | 30 | } |
| 31 | if (*T).Len(&t) != 5 { |
Rob Pike | 325cf8e | 2010-03-24 16:46:53 -0700 | [diff] [blame] | 32 | println("(*T).Len", (*T).Len(&t)) |
| 33 | panic("fail") |
Russ Cox | e512481 | 2009-01-08 18:06:06 -0800 | [diff] [blame] | 34 | } |
| 35 | } |