]> git.proxmox.com Git - rustc.git/blob - src/test/ui/nll/issue-50716.stderr
New upstream version 1.63.0+dfsg1
[rustc.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