]> git.proxmox.com Git - rustc.git/blob - src/test/ui/span/borrowck-ref-into-rvalue.nll.stderr
New upstream version 1.27.1+dfsg1
[rustc.git] / src / test / ui / span / borrowck-ref-into-rvalue.nll.stderr
1 error[E0597]: borrowed value does not live long enough
2 --> $DIR/borrowck-ref-into-rvalue.rs:13:11
3 |
4 LL | match Some("Hello".to_string()) {
5 | ^^^^^^^^^^^^^^^^^^^^^^^^^ temporary value does not live long enough
6 ...
7 LL | }
8 | - temporary value only lives until here
9 LL | println!("{}", *msg);
10 | ---- borrow later used here
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0597`.