Re: Multiple subtyping
with doesn't work properly with alias this, I've already filed this in bugzilla though.
Re: Multiple subtyping
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