summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug199.go
AgeCommit message (Collapse)AuthorFilesLines
2010-03-24delete all uses of panicln by rewriting them using panic or,Rob Pike1-5/+7
in the tests, println+panic. gofmt some tests too. R=rsc CC=golang-dev http://codereview.appspot.com/741041
2009-08-30array index bugRuss Cox1-0/+25
x[i] x not addressable, i >= UINF double evaluated i second eval killed live registers manifested as gob instability R=ken OCL=34097 CL=34099