Thread overview | |||||||||
---|---|---|---|---|---|---|---|---|---|
|
January 31, 2013 [Issue 9428] New: Wrong array append | ||||
---|---|---|---|---|
| ||||
http://d.puremagic.com/issues/show_bug.cgi?id=9428 Summary: Wrong array append Product: D Version: D2 Platform: x86 OS/Version: Windows Status: NEW Keywords: wrong-code Severity: major Priority: P2 Component: druntime AssignedTo: nobody@puremagic.com ReportedBy: bearophile_hugs@eml.cc --- Comment #0 from bearophile_hugs@eml.cc 2013-01-30 17:17:24 PST --- import std.stdio: writeln; void main() { int[2][] items = [[1, 2]]; int[2] x = [3, 4]; auto r1 = items ~ [x]; writeln(r1); auto r2 = items ~ x; writeln(r2); } Output: [[1, 2], [3, 4]] [[1, 2], [3, 4], [22683584, 4391680]] Expected output: [[1, 2], [3, 4]] [[1, 2], [3, 4]] Maybe it's a regression. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
February 01, 2013 [Issue 9428] Wrong array concatenation | ||||
---|---|---|---|---|
| ||||
Posted in reply to bearophile_hugs@eml.cc | http://d.puremagic.com/issues/show_bug.cgi?id=9428 Oleg Kuporosov <Oleg.Kuporosov@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |Oleg.Kuporosov@gmail.com --- Comment #1 from Oleg Kuporosov <Oleg.Kuporosov@gmail.com> 2013-01-31 21:56:50 PST --- both 2.059 and 2.060 have showed the same output as 2.061, so it is not regression agaist it. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
February 01, 2013 [Issue 9428] Wrong array concatenation | ||||
---|---|---|---|---|
| ||||
Posted in reply to bearophile_hugs@eml.cc | http://d.puremagic.com/issues/show_bug.cgi?id=9428 Kenji Hara <k.hara.pg@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |pull Component|druntime |DMD Platform|x86 |All OS/Version|Windows |All --- Comment #2 from Kenji Hara <k.hara.pg@gmail.com> 2013-01-31 23:51:43 PST --- https://github.com/D-Programming-Language/dmd/pull/1590 It is an issue of dmd glue layer, so did not belongs to druntime. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
February 19, 2013 [Issue 9428] Wrong array concatenation | ||||
---|---|---|---|---|
| ||||
Posted in reply to bearophile_hugs@eml.cc | http://d.puremagic.com/issues/show_bug.cgi?id=9428 --- Comment #3 from github-bugzilla@puremagic.com 2013-02-18 20:30:55 PST --- Commits pushed to master at https://github.com/D-Programming-Language/dmd https://github.com/D-Programming-Language/dmd/commit/976ddc082ef8f74ff9bae199cb9289d0e1d1b4ca fix Issue 9428 - Wrong array concatenation https://github.com/D-Programming-Language/dmd/commit/7b2bc9bab72eb11ec3f89f67190578eaf7f98ead Merge pull request #1590 from 9rnsr/fix9428 Issue 9428 - Wrong array concatenation -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
February 19, 2013 [Issue 9428] Wrong array concatenation | ||||
---|---|---|---|---|
| ||||
Posted in reply to bearophile_hugs@eml.cc | http://d.puremagic.com/issues/show_bug.cgi?id=9428 Kenji Hara <k.hara.pg@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
Copyright © 1999-2021 by the D Language Foundation