]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-52126-assign-op-invariance.stderr
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / issues / issue-52126-assign-op-invariance.stderr
1 error[E0597]: `line` does not live long enough
2   --> $DIR/issue-52126-assign-op-invariance.rs:44:28
3    |
4 LL |         let v: Vec<&str> = line.split_whitespace().collect();
5    |                            ^^^^ borrowed value does not live long enough
6 ...
7 LL |     }
8    |     - `line` dropped here while still borrowed
9 LL | }
10    | - borrowed value needs to live until here
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0597`.