summaryrefslogtreecommitdiff
path: root/test/bugs
AgeCommit message (Collapse)AuthorFilesLines
2011-04-26Imported Upstream version 2011.04.13upstream/2011.04.13Ondřej Surý3-7/+7
2011-04-20Imported Upstream version 2011.03.07.1upstream/2011.03.07.1Ondřej Surý3-0/+71
2011-02-18Imported Upstream version 2011.02.15upstream/2011.02.15Ondřej Surý3-0/+70
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý3-178/+0
2010-06-09bug286: test caseRobert Griesemer1-0/+94
R=r CC=golang-dev http://codereview.appspot.com/1644042
2010-06-08gc: new typechecking rulesRuss Cox2-307/+0
* Code for assignment, conversions now mirrors spec. * Changed some snprint -> smprint. * Renamed runtime functions to separate interface conversions from type assertions: convT2I, assertI2T, etc. * Correct checking of \U sequences. Fixes issue 840. Fixes issue 830. Fixes issue 778. R=ken2 CC=golang-dev http://codereview.appspot.com/1303042
2010-06-08fix buildRuss Cox1-1/+1
R=gri CC=golang-dev http://codereview.appspot.com/1616041
2010-06-08bug284: make conversion legal, fix error patternsRuss Cox1-6/+10
R=gri CC=golang-dev http://codereview.appspot.com/1612041
2010-06-08bug285: delete invalid map assignmentRuss Cox1-3/+1
*T2 implements I2, but T2 does not. R=gri CC=golang-dev http://codereview.appspot.com/1613041
2010-06-03bug285: assignment compatible map keys must be acceptedRobert Griesemer1-0/+118
R=r CC=golang-dev http://codereview.appspot.com/1473042
2010-06-02bug284: additional conversion test caseRobert Griesemer1-0/+5
R=r, iant CC=golang-dev http://codereview.appspot.com/1433042
2010-06-02bug284: test cases for new conversion rulesRobert Griesemer1-0/+182
R=rsc, r, iant CC=golang-dev http://codereview.appspot.com/1465041
2010-05-24gc: bug277 - new conversion syntaxRuss Cox1-72/+0
R=ken2 CC=golang-dev http://codereview.appspot.com/1220046
2010-05-24bug277: tests for conversion syntaxRobert Griesemer1-0/+72
- accepted by gccgo, gofmt - some not accepted by 6g - spec revision forthcoming R=rsc CC=golang-dev http://codereview.appspot.com/1279041
2010-05-20clean up bug 275Ken Thompson1-20/+0
R=rsc CC=golang-dev http://codereview.appspot.com/1224044
2010-05-19bug275: cannot apply real() to a complex array elementRobert Griesemer1-0/+20
R=r, ken2 CC=golang-dev http://codereview.appspot.com/1260041
2010-05-13bug274: test case for issue 777Robert Griesemer1-0/+29
R=r, iant CC=golang-dev http://codereview.appspot.com/1195042
2010-05-03gc: bug264Russ Cox1-49/+0
Fixes issue 692. R=ken2 CC=golang-dev http://codereview.appspot.com/1092041
2010-05-03gc: bug267Russ Cox1-22/+0
R=ken2 CC=golang-dev http://codereview.appspot.com/1067042
2010-04-276g bug: no need for parens around array index expressionRobert Griesemer1-0/+22
where index is a composite literal R=rsc CC=golang-dev http://codereview.appspot.com/961044
2010-03-29gc: bug265Russ Cox1-22/+0
Fixes issue 700. R=ken2 CC=golang-dev http://codereview.appspot.com/839041
2010-03-29bug265: test case for issue 700Robert Griesemer1-0/+22
( http://code.google.com/p/go/issues/detail?id=700 ) R=r CC=golang-dev http://codereview.appspot.com/827042
2010-03-25bug264 didn't report BUG correctly, caused "fail" from test/runRob Pike1-4/+4
R=rsc, gri CC=golang-dev http://codereview.appspot.com/762041
2010-03-25bug264: test case for issue 692Robert Griesemer1-0/+49
R=r CC=golang-dev http://codereview.appspot.com/715042
2010-03-05Generate same output on all architectures.Ian Lance Taylor1-6/+20
Passing an argument to bug260 will indicate which alignments are wrong. R=r CC=golang-dev http://codereview.appspot.com/231042
2010-03-04add a test that structures pack. 6g fails.Rob Pike1-0/+41
R=rsc CC=golang-dev http://codereview.appspot.com/237041
2010-02-18gc: recursive interface embeddingRuss Cox2-40/+0
Fixes issue 287. R=ken2 CC=golang-dev http://codereview.appspot.com/215048
2010-02-16gc: undo attempt at fixing recursive interface embeddingRuss Cox2-0/+40
Fixes issue 582. Update issue 287 Status: Accepted Bug fix was too intrusive; undo and reopen issue. R=ken2 CC=golang-dev http://codereview.appspot.com/209044
2010-02-01gc: bug246Russ Cox1-18/+0
R=ken2 CC=golang-dev http://codereview.appspot.com/198057
2010-02-01gc: bug242Russ Cox1-121/+0
R=ken2 CC=golang-dev http://codereview.appspot.com/198053
2010-01-31Fix expected string.Ian Lance Taylor1-1/+12
I got it wrong because gccgo was incorrectly failing to clear the value when a nonblocking receive did not receive anything. R=rsc CC=golang-dev http://codereview.appspot.com/194161
2010-01-26gc: fix chan <- chan precedence.Russ Cox1-39/+0
also allow func() func(). R=ken2 CC=golang-dev http://codereview.appspot.com/194078
2010-01-25channel types parsed not according to spec by 6gRobert Griesemer1-0/+39
R=r, rsc CC=golang-dev http://codereview.appspot.com/193101
2010-01-18add bug246 (issue 492)Russ Cox1-0/+18
R=r CC=golang-dev http://codereview.appspot.com/186216
2010-01-15Test order of evaluation in tuple assignments.Ian Lance Taylor1-0/+110
gccgo currently passes this test; 8g currently does not. I think I counted everything out right. R=rsc CC=golang-dev http://codereview.appspot.com/186165
2010-01-08gc: bug238Russ Cox1-19/+0
Fixes issue 471. R=ken2 CC=golang-dev http://codereview.appspot.com/181184
2010-01-07gc: bug219, bug239, bug240Russ Cox3-76/+0
Fixes issue 475. R=ken2 CC=golang-dev http://codereview.appspot.com/183157
2009-12-29Test case for issue 475 and related bug.Robert Griesemer2-0/+41
R=iant CC=golang-dev http://codereview.appspot.com/183087
2009-12-29test case for issue 471Robert Griesemer1-0/+19
R=iant CC=golang-dev http://codereview.appspot.com/183084
2009-12-03gc: handle _ = <-c in select.Russ Cox1-23/+0
Fixes issue 238. R=ken2 http://codereview.appspot.com/163098
2009-11-19bug219: parsing difficulties with 6gRobert Griesemer1-0/+35
R=r, rsc http://codereview.appspot.com/157085
2009-11-16bug218.go: testcase for issue 238Robert Griesemer1-0/+23
R=rsc http://codereview.appspot.com/154172
2009-11-08bug212, bug213.Russ Cox2-28/+0
R=ken http://go/go-review/1026032
2009-11-02We should not silently permit a named type to match an unnamedIan Lance Taylor1-2/+2
type. This is OK in a conversion but not in an assignment. R=rsc http://go/go-review/1016024
2009-10-29Bug: 6g accepts fallthrough in type switch.Ian Lance Taylor1-0/+16
R=r CC=go-dev http://go/go-review/1016006
2009-10-28Test that the compiler rejects map types which should not beIan Lance Taylor1-0/+12
compatible. R=rsc CC=go-dev http://go/go-review/1018001
2009-10-20address bug193 and add note to spec about it.Russ Cox2-16/+2
R=ken OCL=35920 CL=35920
2009-10-20bug162, over and overRuss Cox1-25/+0
R=ken OCL=35919 CL=35919
2009-10-19bug196Russ Cox1-51/+0
R=ken OCL=35905 CL=35905
2009-10-19bug136Russ Cox1-22/+0
R=ken OCL=35902 CL=35904