summaryrefslogtreecommitdiff
path: root/test/initcomma.go
AgeCommit message (Collapse)AuthorFilesLines
2012-04-06Imported Upstream version 1upstream/1Ondřej Surý1-5/+7
2011-09-13Imported Upstream version 60upstream/60Ondřej Surý1-0/+79
2011-09-13Imported Upstream version 60Ondřej Surý1-79/+0
2010-03-24delete all uses of panicln by rewriting them using panic or,Rob Pike1-19/+64
in the tests, println+panic. gofmt some tests too. R=rsc CC=golang-dev http://codereview.appspot.com/741041
2009-03-03Automated g4 rollback of changelist 25024,Russ Cox1-4/+4
plus significant hand editing. Back to T{x} for composite literals. R=r OCL=25612 CL=25632
2009-02-13convert composite literals from { } to ( ).Russ Cox1-4/+4
only non-trivial changes are in convlit1.go golden.out R=gri OCL=25019 CL=25024
2009-01-06fixed and added more testsKen Thompson1-3/+20
R=r OCL=22187 CL=22187
2008-12-20fix some tests. only 3 remain broken (complit, hilbert, initcomma).Rob Pike1-1/+1
leaving golden.out alone for now. R=ken DELTA=13 (0 added, 0 deleted, 13 changed) OCL=21682 CL=21682
2008-12-19change *map to map; *chan to chan; new(T) to new(*T)Russ Cox1-1/+1
fix bugs left over from *[] to [] conversion. TBR=r OCL=21576 CL=21581
2008-10-14allow trailing comma in braced initialized listRuss Cox1-0/+17
R=ken OCL=17141 CL=17143