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
impl Drop
impl Sized
fn impl_drop() -> impl Drop { let rec = impl_drop(); // incorrectly renders `impl Sized` in the hint } fn impl_sized() -> impl Sized { let rec = impl_sized(); // correctly renders `impl Sized` in the hint } fn impl_copy() -> impl Copy { let rec = impl_copy(); // correctly renders `impl Copy` in the hint }
The text was updated successfully, but these errors were encountered:
I think we have some hack to ignore Drop bounds, this might be a side effect.
Sorry, something went wrong.
This is the side-effect of #11936 and I wonder whether that workaround is still needed since rustc removed impl ~const in rust-lang/rust/issues/110395
impl ~const
No branches or pull requests
The text was updated successfully, but these errors were encountered: