diff options
Diffstat (limited to 'testdata/slice.go')
-rw-r--r-- | testdata/slice.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/testdata/slice.go b/testdata/slice.go index c5e4a3308..8fcbffff1 100644 --- a/testdata/slice.go +++ b/testdata/slice.go @@ -4,6 +4,7 @@ func main() { l := 5 foo := []int{1, 2, 4, 5} bar := make([]int, l-2, l) + println("foo is nil?", foo == nil, nil == foo) printslice("foo", foo) printslice("bar", bar) printslice("foo[1:2]", foo[1:2]) @@ -15,6 +16,7 @@ func main() { // append var grow []int + println("slice is nil?", grow == nil, nil == grow) printslice("grow", grow) grow = append(grow, 42) printslice("grow", grow) |