On Tuesday, 2 December 2025 at 07:50:57 UTC, Walter Bright wrote: > Initial implementation: > > https://github.com/dlang/dmd/pull/22171 This should be allowed: final int x; // A final variable declared without an initializer. x = 42; // currently getting -> Error: cannot modify `final x`