blob: 3ce4dd9fdd6841c2190135c8463bb81ec3ef1f56 [file] [log] [blame]
error[E0597]: `last_dropped` does not live long enough
--> $DIR/issue28498-reject-trait-bound.rs:34:20
|
LL | foo0 = Foo(0, &last_dropped);
| ^^^^^^^^^^^^ borrowed value does not live long enough
...
LL | }
| - `last_dropped` dropped here while still borrowed
|
= note: values in a scope are dropped in the opposite order they are created
error[E0597]: `first_dropped` does not live long enough
--> $DIR/issue28498-reject-trait-bound.rs:36:20
|
LL | foo1 = Foo(1, &first_dropped);
| ^^^^^^^^^^^^^ borrowed value does not live long enough
...
LL | }
| - `first_dropped` dropped here while still borrowed
|
= note: values in a scope are dropped in the opposite order they are created
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0597`.