rust/tests/ui/issues/issue-16922.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
589 B
Plaintext
Raw Normal View History

2020-05-26 19:22:47 -05:00
error: lifetime may not live long enough
2022-04-01 12:13:25 -05:00
--> $DIR/issue-16922.rs:4:5
2020-05-26 19:22:47 -05:00
|
LL | fn foo<T: Any>(value: &T) -> Box<dyn Any> {
| - let's call the lifetime of this reference `'1`
LL | Box::new(value) as Box<dyn Any>
| ^^^^^^^^^^^^^^^ cast requires that `'1` must outlive `'static`
|
help: to declare that the trait object captures data from argument `value`, you can add an explicit `'_` lifetime bound
|
LL | fn foo<T: Any>(value: &T) -> Box<dyn Any + '_> {
| ++++
2020-05-26 19:22:47 -05:00
error: aborting due to previous error