]> git.lizzy.rs Git - rust.git/blob - src/test/ui/regions/regions-pattern-typing-issue-19552.stderr
Rollup merge of #60130 - khuey:efficient_last, r=sfackler
[rust.git] / src / test / ui / regions / regions-pattern-typing-issue-19552.stderr
1 error[E0597]: `line` does not live long enough
2   --> $DIR/regions-pattern-typing-issue-19552.rs:5:14
3    |
4 LL |     match [&*line] {
5    |              ^^^^ borrowed value does not live long enough
6 LL |         [ word ] => { assert_static(word); }
7    |                       ------------------- argument requires that `line` is borrowed for `'static`
8 LL |     }
9 LL | }
10    | - `line` dropped here while still borrowed
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0597`.