mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-30 23:03:06 +03:00
9b9d098e1d
Remove unnecessary `mut` in test. The value is moved in `pin!()`, so the binding doesn't need to be `mut` itself. (Rustc doesn't warn about this due to the current hacky implementation of `pin!()`. That is fixed by https://github.com/rust-lang/rust/pull/139114.)