commit | d47d888ba663014e6aa8ca043e694f4b2a5898b8 | [log] [tgz] |
---|---|---|
author | Russ Cox <rsc@golang.org> | Thu Dec 18 22:37:22 2008 -0800 |
committer | Russ Cox <rsc@golang.org> | Thu Dec 18 22:37:22 2008 -0800 |
tree | 851fad01a87b8fa071ed46fa0985f1857d9e47ca | |
parent | 9786f69f74a5fa290476774e07fb10ce8da84123 [diff] [blame] |
convert *[] to []. R=r OCL=21563 CL=21571
diff --git a/test/interface1.go b/test/interface1.go index c81cad5..649a955 100644 --- a/test/interface1.go +++ b/test/interface1.go
@@ -11,7 +11,7 @@ } type Regexp struct { - code *[]Inst; + code []Inst; start Inst; }