2020-07-07 14:50:49 +00:00
|
|
|
error[E0597]: `arg` does not live long enough
|
|
|
|
--> $DIR/issue-74050-end-span.rs:5:19
|
|
|
|
|
|
|
|
|
LL | let _arg = match args.next() {
|
|
|
|
| ---- borrow later stored here
|
|
|
|
LL | Some(arg) => {
|
2023-01-17 02:52:43 +00:00
|
|
|
| --- binding `arg` declared here
|
2020-07-07 14:50:49 +00:00
|
|
|
LL | match arg.to_str() {
|
2023-06-22 20:30:23 +00:00
|
|
|
| ^^^ borrowed value does not live long enough
|
2020-07-07 14:50:49 +00:00
|
|
|
...
|
|
|
|
LL | }
|
|
|
|
| - `arg` dropped here while still borrowed
|
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2020-07-07 14:50:49 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0597`.
|