]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-16922.stderr
Rollup merge of #100861 - RalfJung:const-ice, r=oli-obk
[rust.git] / src / test / ui / issues / issue-16922.stderr
1 error: lifetime may not live long enough
2   --> $DIR/issue-16922.rs:4:5
3    |
4 LL | fn foo<T: Any>(value: &T) -> Box<dyn Any> {
5    |                       - let's call the lifetime of this reference `'1`
6 LL |     Box::new(value) as Box<dyn Any>
7    |     ^^^^^^^^^^^^^^^ cast requires that `'1` must outlive `'static`
8    |
9 help: to declare that the trait object captures data from argument `value`, you can add an explicit `'_` lifetime bound
10    |
11 LL | fn foo<T: Any>(value: &T) -> Box<dyn Any + '_> {
12    |                                          ++++
13
14 error: aborting due to previous error
15