]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/regions/regions-pattern-typing-issue-19552.stderr
Auto merge of #60093 - GuillaumeGomez:fix-attrs-pos, r=Manishearth
[rust.git] / src / test / ui / regions / regions-pattern-typing-issue-19552.stderr
index ad80925cad7d23b31a2be63911f841a43611bb14..f77d94a24b88fee2a3fc4d09f0994116b8af8d9b 100644 (file)
@@ -1,13 +1,13 @@
 error[E0597]: `line` does not live long enough
   --> $DIR/regions-pattern-typing-issue-19552.rs:5:14
    |
-LL |     match [&*line] { //~ ERROR `line` does not live long enough
+LL |     match [&*line] {
    |              ^^^^ borrowed value does not live long enough
-...
+LL |         [ word ] => { assert_static(word); }
+   |                       ------------------- argument requires that `line` is borrowed for `'static`
+LL |     }
 LL | }
-   | - borrowed value only lives until here
-   |
-   = note: borrowed value must be valid for the static lifetime...
+   | - `line` dropped here while still borrowed
 
 error: aborting due to previous error