July 13, 2023 [Issue 24046] New: static destructors should be allowed in function bodies | ||||
---|---|---|---|---|
| ||||
https://issues.dlang.org/show_bug.cgi?id=24046 Issue ID: 24046 Summary: static destructors should be allowed in function bodies Product: D Version: D2 Hardware: All OS: All Status: NEW Severity: enhancement Priority: P1 Component: dmd Assignee: nobody@puremagic.com Reporter: b2.temp@gmx.com Here is why : as we can hide static variables in function bodies there should be a way to cleanup them. A way to do that would be to allow local static destructors, for example ```d struct S { } S getS() { static S result; static ~this() // run when the program finishes { destroy(result); } return result ? result : (result = new S); } ``` -- |
Copyright © 1999-2021 by the D Language Foundation