mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-01 14:10:03 +03:00
b8516de48f
Previously, if you wanted to bind a field mutably or by ref, you had to
do something like Foo { x: ref mut x }. You can now just do
Foo { ref mut x }.
Closes #6137