]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/issue-51117.stderr
Move /src/test to /tests
[rust.git] / tests / ui / borrowck / issue-51117.stderr
1 error[E0499]: cannot borrow `*bar` as mutable more than once at a time
2   --> $DIR/issue-51117.rs:10:13
3    |
4 LL |         Some(baz) => {
5    |              --- first mutable borrow occurs here
6 LL |             bar.take();
7    |             ^^^^^^^^^^ second mutable borrow occurs here
8 LL |             drop(baz);
9    |                  --- first borrow later used here
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0499`.