mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
Rollup merge of #75292 - slanterns:cleanup-E0502, r=GuillaumeGomez
Clean up E0502 `ref` on an entire `let` pattern is discouraged, take a reference with `&` instead.
This commit is contained in:
commit
e6dfd308d3
@ -5,7 +5,7 @@ Erroneous code example:
|
||||
```compile_fail,E0502
|
||||
fn bar(x: &mut i32) {}
|
||||
fn foo(a: &mut i32) {
|
||||
let ref y = a; // a is borrowed as immutable.
|
||||
let y = &a; // a is borrowed as immutable.
|
||||
bar(a); // error: cannot borrow `*a` as mutable because `a` is also borrowed
|
||||
// as immutable
|
||||
println!("{}", y);
|
||||
@ -19,7 +19,7 @@ variable before trying to access it mutably:
|
||||
fn bar(x: &mut i32) {}
|
||||
fn foo(a: &mut i32) {
|
||||
bar(a);
|
||||
let ref y = a; // ok!
|
||||
let y = &a; // ok!
|
||||
println!("{}", y);
|
||||
}
|
||||
```
|
||||
|
Loading…
Reference in New Issue
Block a user