]> git.proxmox.com Git - rustc.git/blame - src/test/ui/try-block/try-block-maybe-bad-lifetime.stderr
New upstream version 1.36.0+dfsg1
[rustc.git] / src / test / ui / try-block / try-block-maybe-bad-lifetime.stderr
CommitLineData
b7449926 1error[E0506]: cannot assign to `i` because it is borrowed
0731742a 2 --> $DIR/try-block-maybe-bad-lifetime.rs:17:9
b7449926
XL
3 |
4LL | &i
5 | -- borrow of `i` occurs here
6LL | };
532ac7d7 7LL | i = 0;
b7449926
XL
8 | ^^^^^ assignment to borrowed `i` occurs here
9LL | let _ = i;
10LL | do_something_with(x);
11 | - borrow later used here
12
13error[E0382]: borrow of moved value: `x`
0731742a 14 --> $DIR/try-block-maybe-bad-lifetime.rs:28:24
b7449926 15 |
9fa01778
XL
16LL | let x = String::new();
17 | - move occurs because `x` has type `std::string::String`, which does not implement the `Copy` trait
18...
b7449926
XL
19LL | ::std::mem::drop(x);
20 | - value moved here
21LL | };
532ac7d7 22LL | println!("{}", x);
b7449926 23 | ^ value borrowed here after move
b7449926
XL
24
25error[E0506]: cannot assign to `i` because it is borrowed
0731742a 26 --> $DIR/try-block-maybe-bad-lifetime.rs:40:9
b7449926
XL
27 |
28LL | j = &i;
29 | -- borrow of `i` occurs here
30LL | };
532ac7d7 31LL | i = 0;
b7449926
XL
32 | ^^^^^ assignment to borrowed `i` occurs here
33LL | let _ = i;
34LL | do_something_with(j);
35 | - borrow later used here
36
37error: aborting due to 3 previous errors
38
48663c56 39Some errors have detailed explanations: E0382, E0506.
b7449926 40For more information about an error, try `rustc --explain E0382`.