Re: Immutable circular imports

2009-12-17 Thread Tomek Sowiński
Dnia 17-12-2009 o 01:14:53 grauzone n...@example.net napisał(a): There are a _lot_ of circular dependency bugs, and there are a lot of immutable related bugs. Combine both together and you get... probably even more bugs. So I'm noticing... BTW, what is your approach to avoid such woes when

Immutable circular imports

2009-12-16 Thread Tomek Sowiński
Amusing things happen when immutable arguments and circular imports are put together: -- module hello; import test; struct Strukt { Staly* s; } -- module test; import hello; immutable struct Staly {

Re: Immutable circular imports

2009-12-16 Thread grauzone
Tomek Sowiński wrote: Amusing things happen when immutable arguments and circular imports are put together: -- module hello; import test; struct Strukt { Staly* s; } -- module test; import hello;