On 6/23/11, SimonM <user at example.net> wrote:
> Oh! Forgot about this:
> import ascii = std.ascii;
This doesn't help with std.string, because you'll inadvertently hide
the string type:
import string = std.string; // woops
void main()
{
string x;
}
Error: module std.string is used as a type