dmd icon indicating copy to clipboard operation
dmd copied to clipboard

dmd D Programming Language compiler

Results 301 dmd issues
Sort by recently updated
recently updated
newest added

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.

Needs Changelog
Needs Spec PR

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`...

Regression

https://issues.dlang.org/show_bug.cgi?id=24769 @LightBender

Needs Spec PR

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...

Needs Approval
Needs Work
Needs Changelog
Easy Review
Needs Decision
Walter Bright