[Issue 12829] Wrong error line number for closure allocation in @nogc function

2017-08-02 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=12829 --- Comment #6 from github-bugzi...@puremagic.com --- Commit pushed to dmd-cxx at https://github.com/dlang/dmd https://github.com/dlang/dmd/commit/146df2580973de9a3d291be7c747e4ac7c7c2f37 Issue 12829 - Wrong error line number for closure allocation

[Issue 12829] Wrong error line number for closure allocation in @nogc function

2016-03-19 Thread via Digitalmars-d-bugs
error line number for closure allocation in @nogc function https://github.com/D-Programming-Language/dmd/commit/10a0aa2bda569cb6efbb29f4c9f31aeca9685c46 Merge pull request #4855 from 9rnsr/fix12829 --

[Issue 12829] Wrong error line number for closure allocation in @nogc function

2016-01-31 Thread via Digitalmars-d-bugs
error line number for closure allocation in @nogc function https://github.com/D-Programming-Language/dmd/commit/10a0aa2bda569cb6efbb29f4c9f31aeca9685c46 Merge pull request #4855 from 9rnsr/fix12829 Issue 12829 - Wrong error line number for closure allocation in @nogc function --

[Issue 12829] Wrong error line number for closure allocation in @nogc function

2016-01-31 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=12829 github-bugzi...@puremagic.com changed: What|Removed |Added Status|NEW |RESOLVED

[Issue 12829] Wrong error line number for closure allocation in @nogc function

2015-08-01 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=12829 Kenji Hara k.hara...@gmail.com changed: What|Removed |Added Keywords||pull Hardware|x86

[Issue 12829] Wrong error line number for closure allocation in @nogc function

2014-06-02 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=12829 --- Comment #1 from bearophile_h...@eml.cc --- This reports only one closure: void main() @nogc { int x; void delegate() @nogc foo; foo = () { int y = x; }; void delegate() @nogc bar; bar = () { int y = x;