Is anyone having success using RDMD on Windows? I keep getting back this kind of nonsense:
.\widget.d(2): Error: module io from file acme\goodies\io.d conflicts with another module io from file .\acme\goodies\io.d The files are: C:\test\main.d C:\test\widget.d C:\test\acme\goodies\io.d main.d: import widget; void main() { } widget.d: public import acme.goodies.io; void fun(int x) { } io.d: void fun(long n) { } It almost looks like it's trying to parse the file twice for some reason. The source is available, which is cool, so I might take a look. Is anyone else having this kind of error?