fn main() {
let mut a = String::new();
let mut b = &mut a;
println!("{:?}",a);
b.push('a');
}
复制代码
error[E0502]: cannot borrow `a` as immutable because it is also borrowed as mutable
--> src/main.rs:9:21
|
8 | let mut b = &mut a;
| ------ mutable borrow occurs here
9 | println!("{:?}",a);
| ^ immutable borrow occurs here
10 | b.push('a');
| - mutable borrow later used here
|
= note: this error originates in the macro `$crate::format_args_nl` which comes from the expansion of the macro `println` (in Nightly builds, run with -Z macro-backtrace for more info)