From 08ca30bbfad04d3ca1bf7ae75c291b91ecb00aef Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Fri, 19 Dec 2008 03:05:37 -0800 Subject: change *map to map; *chan to chan; new(T) to new(*T) fix bugs left over from *[] to [] conversion. TBR=r OCL=21576 CL=21581 --- test/ken/intervar.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/ken/intervar.go') diff --git a/test/ken/intervar.go b/test/ken/intervar.go index 1c3d650006..711568b4cb 100644 --- a/test/ken/intervar.go +++ b/test/ken/intervar.go @@ -58,9 +58,9 @@ puts(s string) func main() { - p := new(Print); - b := new(Bio); - f := new(File); + p := new(*Print); + b := new(*Bio); + f := new(*File); p.whoami = 1; p.put = b; -- cgit v1.3-5-g9baa