'private import' and 'private alias' is not working.

2009-02-26 Thread CLXX
I found some private attributes is not working. DMD 2.025 Windows //aaa.d private static import std.string; private alias std.string.find find; private import std.conv: to; // main.d import aaa; void main( ){ string x = "main.d"; find( x, "." ); // should be ERROR! std.string.ifind( x, "."

Re: 'private import' and 'private alias' is not working.

2009-02-27 Thread CLXX
> There is a bugzilla entry for this somewhere. Thank you for your reply. I'm surprised to see so early.