On 11/27/2011 11:40 PM, Alexey Veselovsky wrote:
> Also I can't
> write method implementation in different (implementation) file
> (without inheritance).
---------- .di file ------------
module foo;
int bar();
---------- .d file -------------
module foo;
int bar() { return 3; }
--------------------------------