]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/issues/issue-47184.stderr
Auto merge of #54720 - davidtwco:issue-51191, r=nikomatsakis
[rust.git] / src / test / ui / issues / issue-47184.stderr
index 32a9783e9c213137c4ec9064c12aaa6586d26ca5..4a8e9255723cc6c8a15955357d5c30c259666a14 100644 (file)
@@ -1,13 +1,13 @@
-error[E0597]: borrowed value does not live long enough
+error[E0716]: temporary value dropped while borrowed
   --> $DIR/issue-47184.rs:14:44
    |
 LL |     let _vec: Vec<&'static String> = vec![&String::new()];
-   |                                            ^^^^^^^^^^^^^ - temporary value only lives until here
+   |                                            ^^^^^^^^^^^^^ - temporary value is freed at the end of this statement
    |                                            |
-   |                                            temporary value does not live long enough
+   |                                            creates a temporary which is freed while still in use
    |
    = note: borrowed value must be valid for the static lifetime...
 
 error: aborting due to previous error
 
-For more information about this error, try `rustc --explain E0597`.
+For more information about this error, try `rustc --explain E0716`.