Do not register placeholder region outlives when considering_regions is false

This commit is contained in:
Michael Goulet 2022-10-12 04:03:59 +00:00
parent db0597f561
commit 3021598fdb
3 changed files with 62 additions and 1 deletions

View file

@ -355,7 +355,7 @@ impl<'a, 'tcx> ObligationProcessor for FulfillProcessor<'a, 'tcx> {
}
ty::PredicateKind::RegionOutlives(data) => {
if infcx.considering_regions || data.has_placeholders() {
if infcx.considering_regions {
infcx.region_outlives_predicate(&obligation.cause, Binder::dummy(data));
}

View file

@ -0,0 +1,29 @@
// check-pass
struct Foo<'a> {
foo: &'a mut usize,
}
trait Bar<'a> {
type FooRef<'b>
where
'a: 'b;
fn uwu(foo: Foo<'a>, f: impl for<'b> FnMut(Self::FooRef<'b>));
}
impl<'a> Bar<'a> for () {
type FooRef<'b>
=
&'b Foo<'a>
where
'a : 'b,
;
fn uwu(
foo: Foo<'a>,
mut f: impl for<'b> FnMut(&'b Foo<'a>), //relevant part
) {
f(&foo);
}
}
fn main() {}

View file

@ -0,0 +1,32 @@
// check-pass
pub trait BufferTrait<'buffer> {
type Subset<'channel>
where
'buffer: 'channel;
fn for_each_subset<F>(&self, f: F)
where
F: for<'channel> Fn(Self::Subset<'channel>);
}
pub struct SomeBuffer<'buffer> {
samples: &'buffer [()],
}
impl<'buffer> BufferTrait<'buffer> for SomeBuffer<'buffer> {
type Subset<'subset> = Subset<'subset> where 'buffer: 'subset;
fn for_each_subset<F>(&self, _f: F)
where
F: for<'subset> Fn(Subset<'subset>),
{
todo!()
}
}
pub struct Subset<'subset> {
buffer: &'subset [()],
}
fn main() {}