]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-65131.stderr
Rollup merge of #100168 - WaffleLapkin:improve_diagnostics_for_missing_type_in_a_cons...
[rust.git] / src / test / ui / issues / issue-65131.stderr
1 error[E0499]: cannot borrow `x` as mutable more than once at a time
2   --> $DIR/issue-65131.rs:14:22
3    |
4 LL |     get_pair(&mut x, &mut x);
5    |     -------- ------  ^^^^^^ second mutable borrow occurs here
6    |     |        |
7    |     |        first mutable borrow occurs here
8    |     first borrow later used by call
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0499`.