summaryrefslogtreecommitdiffstats
path: root/tests/ui/match/issue-74050-end-span.stderr
blob: 59c091e44eb87efa0e16a1111eab535d3618a5e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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) => {
LL |             match arg.to_str() {
   |                   ^^^^^^^^^^^^ borrowed value does not live long enough
...
LL |         }
   |         - `arg` dropped here while still borrowed

error: aborting due to previous error

For more information about this error, try `rustc --explain E0597`.