Bug#583837: "circular initialization dependency" depending on link order

2010-05-31 Thread Peter De Wachter
Hi Iain, Thanks for the patch. I didn't see your reply until now (with the BTS you have to explicitly Cc the bug submitter, see [1]), and in the meantime I've managed to create a minimal variant of the parsec47 problem. There's a cycle of three modules, one of which does not use static constructor

Bug#583837:

2010-05-30 Thread Iain Buclaw
See Order or Static Construction. http://www.digitalmars.com/d/1.0/module.html Circular dependencies are allowed so long as not both of the modules contain static ctors or dtors, else will result in a runtime exception. The very simplest example of th