mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-17 09:23:05 +00:00
add a preliminary existential test; not really enough
This commit is contained in:
parent
a18c779fa2
commit
b170c0f1c4
@ -0,0 +1,29 @@
|
||||
// edition:2018
|
||||
// run-pass
|
||||
// revisions: migrate mir
|
||||
//[mir]compile-flags: -Z borrowck=mir
|
||||
|
||||
trait Trait<'a, 'b> { }
|
||||
impl<T> Trait<'_, '_> for T { }
|
||||
|
||||
// Here we wind up selecting `'a` and `'b` in the hidden type because
|
||||
// those are the types that appear inth e original values.
|
||||
|
||||
existential type Foo<'a, 'b>: Trait<'a, 'b>;
|
||||
|
||||
fn upper_bounds<'a, 'b>(a: &'a u8, b: &'b u8) -> Foo<'a, 'b> {
|
||||
// In this simple case, you have a hidden type `(&'0 u8, &'1 u8)` and constraints like
|
||||
//
|
||||
// ```
|
||||
// 'a: '0
|
||||
// 'b: '1
|
||||
// '0 in ['a, 'b]
|
||||
// '1 in ['a, 'b]
|
||||
// ```
|
||||
//
|
||||
// We use the fact that `'a: 0'` must hold (combined with the in
|
||||
// constraint) to determine that `'0 = 'a` must be the answer.
|
||||
(a, b)
|
||||
}
|
||||
|
||||
fn main() { }
|
Loading…
Reference in New Issue
Block a user