digitalmars.D.bugs - [Issue 8793] New: Another problem with pure inference of inner delegate
- d-bugmail puremagic.com (29/29) Oct 10 2012 http://d.puremagic.com/issues/show_bug.cgi?id=8793
- d-bugmail puremagic.com (12/12) Oct 10 2012 http://d.puremagic.com/issues/show_bug.cgi?id=8793
- d-bugmail puremagic.com (11/11) Oct 10 2012 http://d.puremagic.com/issues/show_bug.cgi?id=8793
- d-bugmail puremagic.com (11/11) Oct 10 2012 http://d.puremagic.com/issues/show_bug.cgi?id=8793
http://d.puremagic.com/issues/show_bug.cgi?id=8793 Summary: Another problem with pure inference of inner delegate Product: D Version: D2 Platform: x86 OS/Version: Windows Status: NEW Keywords: rejects-valid Severity: normal Priority: P2 Component: DMD AssignedTo: nobody puremagic.com ReportedBy: bearophile_hugs eml.cc --- Comment #0 from bearophile_hugs eml.cc 2012-10-10 04:21:08 PDT --- This is a spinoff of Issue 8751 alias bool delegate(in int) pure Dg; Dg foo1(immutable Dg f) pure { return x => f(x); // OK } Dg foo2(const Dg f) pure { return x => f(x); // error } void main() {} DMD2.060alpha gives: temp.d(6): Error: cannot implicitly convert expression (__lambda4) of type bool delegate(const(int) x) system to bool delegate(const(int)) pure -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Oct 10 2012
http://d.puremagic.com/issues/show_bug.cgi?id=8793 Kenji Hara <k.hara.pg gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |pull Platform|x86 |All OS/Version|Windows |All --- Comment #1 from Kenji Hara <k.hara.pg gmail.com> 2012-10-10 05:17:04 PDT --- https://github.com/D-Programming-Language/dmd/pull/1171 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Oct 10 2012
http://d.puremagic.com/issues/show_bug.cgi?id=8793 --- Comment #2 from github-bugzilla puremagic.com 2012-10-10 08:23:38 PDT --- Commits pushed to master at https://github.com/D-Programming-Language/dmd https://github.com/D-Programming-Language/dmd/commit/c08e1507ac2ce890f2434ca677a05fad6d8f1827 fix Issue 8793 - Another problem with pure inference of inner delegate https://github.com/D-Programming-Language/dmd/commit/9abc6c0ee4ce8d2f14a243f5fbde7e24671caf0b Merge pull request #1171 from 9rnsr/fix8793 Issue 8793 - Another problem with pure inference of inner delegate -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Oct 10 2012
http://d.puremagic.com/issues/show_bug.cgi?id=8793 bearophile_hugs eml.cc changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #3 from bearophile_hugs eml.cc 2012-10-10 09:49:20 PDT --- Now it works, thank you Kenji Hara :-) -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Oct 10 2012