]> git.lizzy.rs Git - rust.git/blob - src/test/ui/impl-trait/multiple-lifetimes/ordinary-bounds-pick-original-existential.rs
feature-gate member constraints outside of async-await
[rust.git] / src / test / ui / impl-trait / multiple-lifetimes / ordinary-bounds-pick-original-existential.rs
1 // edition:2018
2 // run-pass
3 // revisions: migrate mir
4 //[mir]compile-flags: -Z borrowck=mir
5
6 #![feature(member_constraints)]
7 #![feature(existential_type)]
8
9 trait Trait<'a, 'b> { }
10 impl<T> Trait<'_, '_> for T { }
11
12 // Here we wind up selecting `'a` and `'b` in the hidden type because
13 // those are the types that appear inth e original values.
14
15 existential type Foo<'a, 'b>: Trait<'a, 'b>;
16
17 fn upper_bounds<'a, 'b>(a: &'a u8, b: &'b u8) -> Foo<'a, 'b> {
18     // In this simple case, you have a hidden type `(&'0 u8, &'1 u8)` and constraints like
19     //
20     // ```
21     // 'a: '0
22     // 'b: '1
23     // '0 in ['a, 'b]
24     // '1 in ['a, 'b]
25     // ```
26     //
27     // We use the fact that `'a: 0'` must hold (combined with the in
28     // constraint) to determine that `'0 = 'a` must be the answer.
29     (a, b)
30 }
31
32 fn main() { }