Re: Infinite loop in compiler with forward reference

2010-08-13 Thread Leandro Lucarella
Era Scarecrow, el 14 de agosto a las 03:01 me escribiste: > == Quote from Andrej Mitrovic (andrej.mitrov...@gmail.com)'s article > > --000e0cd5ccdc83f72e048dbd3172 > > Content-Type: text/plain; charset=ISO-8859-1 > > Yup, infinite loop. > > On Sat, Aug 14, 2010 at 1:39 AM, Justin Johansson wrote:

Re: Infinite loop in compiler with forward reference

2010-08-13 Thread Andrej Mitrovic
dmd 0.125? Isn't that ancient? :) On Sat, Aug 14, 2010 at 5:01 AM, Era Scarecrow wrote: > == Quote from Andrej Mitrovic (andrej.mitrov...@gmail.com)'s article > > --000e0cd5ccdc83f72e048dbd3172 > > Content-Type: text/plain; charset=ISO-8859-1 > > Yup, infinite loop. > > On Sat, Aug 14, 2010 at 1

Re: Infinite loop in compiler with forward reference

2010-08-13 Thread Jonathan M Davis
On Friday 13 August 2010 20:01:40 Era Scarecrow wrote: > == Quote from Andrej Mitrovic (andrej.mitrov...@gmail.com)'s article > > > --000e0cd5ccdc83f72e048dbd3172 > > Content-Type: text/plain; charset=ISO-8859-1 > > Yup, infinite loop. > > > > On Sat, Aug 14, 2010 at 1:39 AM, Justin Johansson wr

Re: Infinite loop in compiler with forward reference

2010-08-13 Thread Era Scarecrow
== Quote from Andrej Mitrovic (andrej.mitrov...@gmail.com)'s article > --000e0cd5ccdc83f72e048dbd3172 > Content-Type: text/plain; charset=ISO-8859-1 > Yup, infinite loop. > On Sat, Aug 14, 2010 at 1:39 AM, Justin Johansson wrote: > > Compiling the following with latest DMD D2 sends the compiler in

Re: Infinite loop in compiler with forward reference

2010-08-13 Thread Andrej Mitrovic
Yup, infinite loop. On Sat, Aug 14, 2010 at 1:39 AM, Justin Johansson wrote: > Compiling the following with latest DMD D2 sends the compiler into an > infinite loop. The culprit line seems to be the alias definition. > Can someone else please confirm. > Thanks Justin > > > > > module test; > >

Infinite loop in compiler with forward reference

2010-08-13 Thread Justin Johansson
Compiling the following with latest DMD D2 sends the compiler into an infinite loop. The culprit line seems to be the alias definition. Can someone else please confirm. Thanks Justin module test; class Base { Base foo(); } class Foo: Base { static class Bar: Foo { Bar foo()