Worst ideas/features in programming languages?

jfondren julian.fondren at gmail.com
Tue Oct 12 00:13:45 UTC 2021


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'));
}
```


More information about the Digitalmars-d mailing list