[Issue 13244] Wrong code with -inline and foreach/map/all

2014-12-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13244 Dragos Carp changed: What|Removed |Added CC||dragosc...@gmail.com --

[Issue 13244] Wrong code with -inline and foreach/map/all

2015-07-02 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13244 --- Comment #4 from Kenji Hara --- Reduced case in comment #1 does not reproduce segfault with 2.068 git-head. Another reduction is: struct MapResult(alias fun) { int[] input; @property front() { return fun(input[0]); } } int[] array(R)(R

[Issue 13244] Wrong code with -inline and foreach/map/all

2015-07-02 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13244 --- Comment #5 from Kenji Hara --- (In reply to Kenji Hara from comment #4) > Reduced case in comment #1 does not reproduce segfault with 2.068 git-head. OK, I confirmed that the original issue might be a dup of issue 14366, but that fix (#PR 4505)

[Issue 13244] Wrong code with -inline and foreach/map/all

2015-07-03 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13244 Kenji Hara changed: What|Removed |Added Keywords||pull --- Comment #6 from Kenji Hara --- https:

[Issue 13244] Wrong code with -inline and foreach/map/all

2015-07-03 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13244 Kenji Hara changed: What|Removed |Added CC||m...@weka.io --- Comment #7 from Kenji Hara --

[Issue 13244] Wrong code with -inline and foreach/map/all

2015-08-30 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13244 github-bugzi...@puremagic.com changed: What|Removed |Added Status|NEW |RESOLVED Resolution|-

[Issue 13244] Wrong code with -inline and foreach/map/all

2015-08-30 Thread via Digitalmars-d-bugs
code with -inline and foreach/map/all https://github.com/D-Programming-Language/dmd/commit/a7717a0ee3708346d44f3b9ff237d18a4fedb549 Merge pull request #4796 from 9rnsr/fix13244 Issue 13244 - Wrong code with -inline and foreach/map/all --

[Issue 13244] Wrong code with -inline and foreach/map/all

2015-11-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13244 Ola Østtveit changed: What|Removed |Added Status|RESOLVED|REOPENED Resolution|FIXED

[Issue 13244] Wrong code with -inline and foreach/map/all

2015-11-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13244 --- Comment #10 from Vladimir Panteleev --- (In reply to Ola Østtveit from comment #9) > I'm getting this again with dmd 2.069. How do you know it's the same bug? None of the examples that I posted still reproduced. The bug, as reported here, has b

[Issue 13244] Wrong code with -inline and foreach/map/all

2015-11-05 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13244 Kenji Hara changed: What|Removed |Added Status|REOPENED|RESOLVED Resolution|---

[Issue 13244] Wrong code with -inline and foreach/map/all

2014-08-03 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13244 --- Comment #1 from Vladimir Panteleev --- Reduced: test.d /// struct MapResult(alias fun) { @property empty() { return false; } void popFront() { } @property front() { return fun(0); } } aut

[Issue 13244] Wrong code with -inline and foreach/map/all

2014-09-02 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13244 Denis Shelomovskij changed: What|Removed |Added CC||verylonglogin@gmail.com --- Comment

[Issue 13244] Wrong code with -inline and foreach/map/all

2014-10-13 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13244 Ola Østtveit changed: What|Removed |Added CC||ola...@gmail.com --- Comment #3 from Ola Østt