]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/span/issue-26656.stderr
Rollup merge of #87922 - Manishearth:c-enum-target-spec, r=nagisa,eddyb
[rust.git] / src / test / ui / span / issue-26656.stderr
index ba2befb90a9c162468a2b74ade3116717c768d20..1e939c484fb7b35291775a78020242aded9791b6 100644 (file)
@@ -1,12 +1,15 @@
 error[E0597]: `ticking` does not live long enough
-  --> $DIR/issue-26656.rs:40:36
+  --> $DIR/issue-26656.rs:40:35
    |
 LL |     zook.button = B::BigRedButton(&ticking);
-   |                                    ^^^^^^^ borrowed value does not live long enough
+   |                                   ^^^^^^^^ borrowed value does not live long enough
 LL | }
-   | - `ticking` dropped here while still borrowed
+   | -
+   | |
+   | `ticking` dropped here while still borrowed
+   | borrow might be used here, when `zook` is dropped and runs the `Drop` code for type `Zook`
    |
-   = note: values in a scope are dropped in the opposite order they are created
+   = note: values in a scope are dropped in the opposite order they are defined
 
 error: aborting due to previous error