On 6/23/11, SimonM <u...@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

Reply via email to