Re: Multiple subtyping

2011-08-26 Thread Andrej Mitrovic
with doesn't work properly with alias this, I've already filed this in bugzilla though.

Re: Multiple subtyping

2011-08-25 Thread Timon Gehr
On 08/26/2011 05:45 AM, Joel Christensen wrote: Hi, Has anyone had much experience with multiple subtyping. //Org: based on page 232 (6.13.1) in The D Programming Language book //#save(); without storeShape does not work import std.stdio; class Shape { void shape() { writeln( "Shape" ); } } c