We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
might be the cause behind the breakage in deptypes, but I am not sure about that
deptypes
trait Trait { type Assoc<U>; } impl<T> Trait for T { type Assoc<U> = U; } fn ret<T: Trait, U>(x: U) -> <T as Trait>::Assoc<U> { loop {} } fn foo<T: Trait<Assoc<u32> = u32>, U>() { let inf = Default::default(); let x = ret::<T, _>(inf); let _: i32 = inf; }
The text was updated successfully, but these errors were encountered:
lcnr
Successfully merging a pull request may close this issue.
might be the cause behind the breakage in
deptypes
, but I am not sure about thatThe text was updated successfully, but these errors were encountered: