On Monday, 11 October 2021 at 21:41:45 UTC, monkyyy wrote:
> * nontrivial namespace collisions when importing std
Are these still around? This compiles now:
```d
unittest {
import std;
assert(!std.ascii.isAlpha('5'));
}
unittest {
import std;
import std.ascii : isAlpha;
assert(isAlpha('X'));
assert(std.uni.isAlpha('X'));
}
```