dmd
dmd copied to clipboard
dmd D Programming Language compiler
This currently works only for general imports when -w or -wi is passed. It will consider renamed or selective imports as being used even though the actual alias is never...
See https://github.com/dlang/dmd/pull/16888#issuecomment-2379226685 Just a proof of concept, I don't think this is worth merging at this stage. Maybe under `-preview=dip1000` only.
Currently, it is allowed that a base class is a qualified type. ```d class C : const(Object) { } auto obj = new class const(Object) { }; ``` The qualifier...
Reverts dlang/dmd#16695 Splitting cannot be done unless the Fiber detection code is either: - Duplicated between both base and fiber modules - Isolated to a common module (can't use `version`...
https://issues.dlang.org/show_bug.cgi?id=24769 @LightBender
Backlog: While trying to fix: https://issues.dlang.org/show_bug.cgi?id=3254 I have stumbled upon the fact that it is hard/impossible to fix it as long as public aliases to private symbols are allowed. I...