blob: 927865a3d28c2779721cbe609a012ddc260a6031 [file] [log] [blame]
error[E0597]: `line` does not live long enough
--> $DIR/regions-pattern-typing-issue-19552.rs:15:14
|
LL | match [&*line] { //~ ERROR `line` does not live long enough
| ^^^^ borrowed value does not live long enough
LL | [ word ] => { assert_static(word); }
| ------------------- argument requires that `line` is borrowed for `'static`
LL | }
LL | }
| - `line` dropped here while still borrowed
error: aborting due to previous error
For more information about this error, try `rustc --explain E0597`.