mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-26 23:37:01 +00:00
As of #133155 `Formatter:new` uses `as_results_cursor` to create a non-mutable results reference, and then later that is accessed via `deref_mut` which results in a runtime abort. Changing to `as_results_cursor_mut` fixes it. Fixes #133641.