]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issue-52126-assign-op-invariance.nll.stderr
Auto merge of #52712 - oli-obk:const_eval_cleanups, r=RalfJung
[rust.git] / src / test / ui / issue-52126-assign-op-invariance.nll.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 LL |         //~^ ERROR `line` does not live long enough
7 LL |         println!("accumulator before add_assign {:?}", acc.map);
8    |                                                        ------- borrow used here in later iteration of loop
9 ...
10 LL |     }
11    |     - `line` dropped here while still borrowed
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0597`.