]> git.lizzy.rs Git - rust.git/blob - tests/ui/nll/issue-53570.rs
Auto merge of #101138 - Rejyr:diagnostic-migration-rustc-lint-pt2, r=davidtwco
[rust.git] / tests / ui / nll / issue-53570.rs
1 // Regression test for #53570. Here, we need to propagate that `T: 'a`
2 // but in some versions of NLL we were propagating a stronger
3 // requirement that `T: 'static`. This arose because we actually had
4 // to propagate both that `T: 'a` but also `T: 'b` where `'b` is the
5 // higher-ranked lifetime that appears in the type of the closure
6 // parameter `x` -- since `'b` cannot be expressed in the caller's
7 // space, that got promoted th `'static`.
8 //
9 // check-pass
10
11 use std::cell::{RefCell, Ref};
12
13 trait AnyVec<'a> {
14 }
15
16 trait GenericVec<T> {
17     fn unwrap<'a, 'b>(vec: &'b dyn AnyVec<'a>) -> &'b [T] where T: 'a;
18 }
19
20 struct Scratchpad<'a> {
21     buffers: RefCell<Box<dyn AnyVec<'a>>>,
22 }
23
24 impl<'a> Scratchpad<'a> {
25     fn get<T: GenericVec<T>>(&self) -> Ref<[T]>
26     where T: 'a
27     {
28         Ref::map(self.buffers.borrow(), |x| T::unwrap(x.as_ref()))
29     }
30 }
31
32 fn main() { }