Nested Base classes

2008-12-09 Thread llee
I'm trying derive a class from a nested base class. The programs' structure is as follows: class A { class B { } } class C : A { class D : B { } } I'm using version 2.014 of the dmd compiler, and the above fails. The compiler error reports that B is nested in clas

Re: Nested Base classes

2008-12-09 Thread Jarrett Billingsley
On Tue, Dec 9, 2008 at 2:08 PM, llee <[EMAIL PROTECTED]> wrote: > I'm trying derive a class from a nested base class. The programs' structure > is as follows: > > class A > { > class B > { > } > } > > class C : A > { > class D : B > { > } > } > > I'm using version 2.014 of

Re: Nested Base classes

2008-12-09 Thread BCS
Reply to llee, I'm trying derive a class from a nested base class. The programs' structure is as follows: class A { class B { } } class C : A { class D : B { } } I'm using version 2.014 of the dmd compiler, and the above fails. The compiler error reports that B is nested in class A and not C. D