]> git.lizzy.rs Git - rust.git/blob - src/test/ui/nll/issue-50716.stderr
Auto merge of #103600 - compiler-errors:early-binder-nits, r=spastorino
[rust.git] / src / test / ui / nll / issue-50716.stderr
1 error: lifetime may not live long enough
2   --> $DIR/issue-50716.rs:14:14
3    |
4 LL | fn foo<'a, T: 'static>(s: Box<<&'a T as A>::X>)
5    |        -- lifetime `'a` defined here
6 ...
7 LL |     let _x = *s;
8    |              ^^ proving this value is `Sized` requires that `'a` must outlive `'static`
9
10 error: aborting due to previous error
11