Thread overview | |||||
---|---|---|---|---|---|
|
June 21, 2010 [Issue 4359] New: Erroneous behaviour of variables in a delegate literal passed as template tuple parameter | ||||
---|---|---|---|---|
| ||||
http://d.puremagic.com/issues/show_bug.cgi?id=4359 Summary: Erroneous behaviour of variables in a delegate literal passed as template tuple parameter Product: D Version: D2 Platform: Other OS/Version: All Status: NEW Keywords: wrong-code Severity: normal Priority: P2 Component: DMD AssignedTo: nobody@puremagic.com ReportedBy: bugzilla@kyllingen.net --- Comment #0 from Lars T. Kyllingstad <bugzilla@kyllingen.net> 2010-06-21 11:40:00 PDT --- In the code below, the variable i is never increased above x+1. It seems the declaration inside the loop somehow overwrites i. (Note that the writeln() is only for demonstration purposes and has nothing to do with the bug.) import std.stdio; void run(fun...)() { fun[0](); } void main() { run!(delegate void() { for (int i = 0; i < 100_000; i++) { writeln(i); auto x = 0; // i never exceeds 1 } })(); } -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
July 16, 2010 [Issue 4359] Erroneous behaviour of variables in a delegate literal passed as template tuple parameter | ||||
---|---|---|---|---|
| ||||
Posted in reply to Lars T. Kyllingstad | http://d.puremagic.com/issues/show_bug.cgi?id=4359 Don <clugdbug@yahoo.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |clugdbug@yahoo.com.au Resolution| |DUPLICATE --- Comment #1 from Don <clugdbug@yahoo.com.au> 2010-07-16 10:14:06 PDT --- *** This issue has been marked as a duplicate of issue 4246 *** -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
July 16, 2010 [Issue 4359] Erroneous behaviour of variables in a delegate literal passed as template tuple parameter | ||||
---|---|---|---|---|
| ||||
Posted in reply to Lars T. Kyllingstad | http://d.puremagic.com/issues/show_bug.cgi?id=4359 --- Comment #2 from Don <clugdbug@yahoo.com.au> 2010-07-16 10:20:02 PDT --- Actually bug 4246 is itself a duplicate of 1350. *** This issue has been marked as a duplicate of issue 1350 *** -- 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