digitalmars.D.bugs - [Issue 6058] New: Contract inheritance causes compiler error
- d-bugmail puremagic.com (22/22) May 26 2011 http://d.puremagic.com/issues/show_bug.cgi?id=6058
- d-bugmail puremagic.com (9/9) Jan 01 2012 http://d.puremagic.com/issues/show_bug.cgi?id=6058
- d-bugmail puremagic.com (31/31) Nov 19 2012 http://d.puremagic.com/issues/show_bug.cgi?id=6058
- d-bugmail puremagic.com (12/12) Jul 25 2013 http://d.puremagic.com/issues/show_bug.cgi?id=6058
http://d.puremagic.com/issues/show_bug.cgi?id=6058 Summary: Contract inheritance causes compiler error Product: D Version: D1 Platform: x86 OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: DMD AssignedTo: nobody puremagic.com ReportedBy: mathias.baumann sociomantic.com --- Comment #0 from Mathias Baumann <mathias.baumann sociomantic.com> 2011-05-26 06:32:44 PDT --- Created an attachment (id=990) Test Case for Contract Inheritance Error I am getting the error: main2.d(18): Error: cast(Object)__result is not an lvalue When using contracts with inheritance in certain cases. See the attached test-case for a demonstration of the problem -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
May 26 2011
http://d.puremagic.com/issues/show_bug.cgi?id=6058 Leandro Lucarella <llucax gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #990|application/octet-stream |text/plain mime type| | -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Jan 01 2012
http://d.puremagic.com/issues/show_bug.cgi?id=6058 Don <clugdbug yahoo.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Version|D1 |D1 & D2 --- Comment #1 from Don <clugdbug yahoo.com.au> 2012-11-19 03:39:07 PST --- Applies equally to D2, if you add the 'override' keyword: class Dummy {}; class Super { public Object test () out (obj) { } body { return new Dummy; } } class Example : Super { public override Dummy test ( ) { return cast(Dummy) super.test; } } void main ( ) { } -- D2 -- bug.d(16): Error: cast(const(Object))__result is not an lvalue -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Nov 19 2012
http://d.puremagic.com/issues/show_bug.cgi?id=6058 Henning Pohl <henning still-hidden.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |henning still-hidden.de Resolution| |DUPLICATE --- Comment #2 from Henning Pohl <henning still-hidden.de> 2013-07-25 07:11:00 PDT --- *** This issue has been marked as a duplicate of issue 10479 *** -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Jul 25 2013