diff options
author | Ken Thompson <ken@golang.org> | 2008-12-18 20:06:28 -0800 |
---|---|---|
committer | Ken Thompson <ken@golang.org> | 2008-12-18 20:06:28 -0800 |
commit | 991baa30c0b8db65f41c9f5ca62fe83fe8cea2ab (patch) | |
tree | af8fd515f015109ff244c5550e6890cb5abfe0da /test/ken/range.go | |
parent | 5533ac65097837514737f6c37579a0fcb6425584 (diff) | |
download | golang-991baa30c0b8db65f41c9f5ca62fe83fe8cea2ab.tar.gz |
arrays
R=r
OCL=21564
CL=21564
Diffstat (limited to 'test/ken/range.go')
-rw-r--r-- | test/ken/range.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ken/range.go b/test/ken/range.go index fc866672c..2831806bf 100644 --- a/test/ken/range.go +++ b/test/ken/range.go @@ -9,7 +9,7 @@ package main const size = 16; var a [size]byte; -var p *[]byte; +var p []byte; var m *map[int]byte; func |