]> git.lizzy.rs Git - rust.git/blob - tests/ui/span/issue28498-reject-lifetime-param.stderr
implement Hash for proc_macro::LineColumn
[rust.git] / tests / ui / span / issue28498-reject-lifetime-param.stderr
1 error[E0597]: `first_dropped` does not live long enough
2   --> $DIR/issue28498-reject-lifetime-param.rs:32:19
3    |
4 LL |     foo1 = Foo(1, &first_dropped);
5    |                   ^^^^^^^^^^^^^^ borrowed value does not live long enough
6 ...
7 LL | }
8    | -
9    | |
10    | `first_dropped` dropped here while still borrowed
11    | borrow might be used here, when `foo1` is dropped and runs the `Drop` code for type `Foo`
12    |
13    = note: values in a scope are dropped in the opposite order they are defined
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0597`.