You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#[derive(Copy,Clone)]structInv<'a>(*mut&'a());fnmk<'a>() -> Inv<'a>{loop{}}fnscope<'a,'b,'c>(a:Inv<'a>,b:Inv<'b>,c:Inv<'c>,) -> (implSized + use<'c>,implSized + use<'a,'b>){loop{let _0 = mk();let _1 = mk();// small: opaque1<'b>// big: opaque2<'a, '0>let(mut small,mut big) = scope(a, _0, b);// opaque1<'b> = Inv<'0>// member constraint DOES NOT equate '0 with 'b// it only adds 'b to the region value of '0
small = _0;// opaque2<'a, '0> = Inv<'1>;// when checking whether an arg is universal we first// check whether its scc representative is a free region.
big = a;}scope(a, b, c)}
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: