]> git.lizzy.rs Git - rust.git/blob - tests/ui/associated-types/associated-types-outlives.stderr
implement Hash for proc_macro::LineColumn
[rust.git] / tests / ui / associated-types / associated-types-outlives.stderr
1 error[E0505]: cannot move out of `x` because it is borrowed
2   --> $DIR/associated-types-outlives.rs:22:14
3    |
4 LL |         's: loop { y = denormalise(&x); break }
5    |                                    -- borrow of `x` occurs here
6 LL |         drop(x);
7    |              ^ move out of `x` occurs here
8 LL |         return f(y);
9    |                  - borrow later used here
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0505`.