summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug064.go
AgeCommit message (Collapse)AuthorFilesLines
2009-12-10make test/fixedbugs save for optional semisRobert Griesemer1-2/+1
R=rsc http://codereview.appspot.com/173045
2009-02-05bug064Russ Cox1-0/+23
make f(g()) work when g returns multiple args with names different than f expects. func swap(a, b int) (c, d int) { return b, a } swap(swap(1,2)) R=ken OCL=24474 CL=24476