Comment #0 by qs.il.paperinik — 2024-07-23T11:08:23Z
```d
import x = std.stdio;
import x = std.file; // Error: import `y` conflicts with import `y`
void main()
{
import y = std.stdio;
import y = std.file; // Bad: no error, but should be
}
```
Comment #1 by robert.schadek — 2024-12-13T19:36:34Z