Interface inheritance

2010-12-12 Thread Mandeep Singh Brar
The following code does not compile. import std.stdio; interface A { public void a(int l); } class ACl:A { public void a(int l) { writeln(Hello a); } } interface B: A { public void a(string l, int k); } class BCl: ACl, B { public void

[Issue 5343] dmd crashes by the use of template with -g compiler switch

2010-12-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5343 --- Comment #5 from SHOO zan77...@nifty.com 2010-12-12 02:55:23 PST --- Because this bug was enbug and this must be fixed by next release, I raised importance. Thanks for the swift response. -- Configure issuemail:

Re: Interface inheritance

2010-12-12 Thread Simen kjaeraas
Mandeep Singh Brar mand...@brars.co.in wrote: The following code does not compile. import std.stdio; interface A { public void a(int l); } class ACl:A { public void a(int l) { writeln(Hello a); } } interface B: A { public void a(string l, int

[Issue 5344] New: Interface Inheritance Problem

2010-12-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5344 Summary: Interface Inheritance Problem Product: D Version: D2 Platform: x86 OS/Version: Linux Status: NEW Severity: major Priority: P2 Component: DMD

[Issue 1513] try/catch/finally misbehavior on windows

2010-12-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=1513 --- Comment #8 from Sobirari Muhomori dfj1es...@sneakemail.com 2010-12-12 09:39:15 PST --- I'd prefer Sean's description, though the real issue is the 3rd finally block is not executed. -- Configure issuemail:

[Issue 3555] Const function modifies a field when passed a delegate

2010-12-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3555 Jonathan M Davis jmdavisp...@gmx.com changed: What|Removed |Added CC|

[Issue 3555] Const function modifies a field when passed a delegate

2010-12-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3555 Walter Bright bugzi...@digitalmars.com changed: What|Removed |Added Status|NEW |RESOLVED

[Issue 1513] try/catch/finally misbehavior on windows

2010-12-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=1513 Don clugd...@yahoo.com.au changed: What|Removed |Added Severity|normal |critical --- Comment #9