digitalmars.D.bugs - [Issue 6780] New: Templated global property functions do not work
- d-bugmail puremagic.com (27/27) Oct 07 2011 http://d.puremagic.com/issues/show_bug.cgi?id=6780
- d-bugmail puremagic.com (10/10) Oct 08 2011 http://d.puremagic.com/issues/show_bug.cgi?id=6780
- d-bugmail puremagic.com (8/8) Jan 26 2012 http://d.puremagic.com/issues/show_bug.cgi?id=6780
- d-bugmail puremagic.com (10/10) Jan 26 2012 http://d.puremagic.com/issues/show_bug.cgi?id=6780
- d-bugmail puremagic.com (10/10) Feb 08 2012 http://d.puremagic.com/issues/show_bug.cgi?id=6780
http://d.puremagic.com/issues/show_bug.cgi?id=6780 Summary: Templated global property functions do not work Product: D Version: D2 Platform: All OS/Version: All Status: NEW Keywords: rejects-valid Severity: normal Priority: P2 Component: DMD AssignedTo: nobody puremagic.com ReportedBy: k.hara.pg gmail.com --- Comment #0 from Kenji Hara <k.hara.pg gmail.com> 2011-10-07 10:39:32 PDT --- property int foo()(){ return 10; } int g; property void bar()(int n){ g = n; } void main() { auto n = foo; assert(n == 10); bar = 10; assert(g == 10); } -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Oct 07 2011
http://d.puremagic.com/issues/show_bug.cgi?id=6780 Kenji Hara <k.hara.pg gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |patch --- Comment #1 from Kenji Hara <k.hara.pg gmail.com> 2011-10-08 14:05:03 PDT --- https://github.com/D-Programming-Language/dmd/pull/280 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Oct 08 2011
http://d.puremagic.com/issues/show_bug.cgi?id=6780 --- Comment #2 from github-bugzilla puremagic.com 2012-01-26 12:06:27 PST --- Commit pushed to master at https://github.com/D-Programming-Language/dmd https://github.com/D-Programming-Language/dmd/commit/a08a5bb9394c3b46e3cca6bee1c90922bc0e9da2 Issue 6780 - Templated global property functions do not work -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Jan 26 2012
http://d.puremagic.com/issues/show_bug.cgi?id=6780 Walter Bright <bugzilla digitalmars.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |bugzilla digitalmars.com Resolution| |FIXED -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Jan 26 2012
http://d.puremagic.com/issues/show_bug.cgi?id=6780 Andrej Mitrovic <andrej.mitrovich gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |andrej.mitrovich gmail.com --- Comment #3 from Andrej Mitrovic <andrej.mitrovich gmail.com> 2012-02-08 03:30:16 PST --- This seems to contradict Issue 3204? -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Feb 08 2012