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
Issue #3184 had to do with inference failures around reborrowed pointers, but I neglected to handle reborrowed slices.
As a result, tests like this:
fn subslice<'r>(v: &'r fn()) -> &'r fn() { v } fn both<'r>(v: &'r fn()) -> &'r fn() { subslice(subslice(v)) } fn main() { both(main); }
fail to compile. I have a patch coming soon.
The text was updated successfully, but these errors were encountered:
fd8f56e
Auto merge of rust-lang#5739 - flip1995:rustup, r=flip1995
4cc2fa9
Rustup changelog: none r? @ghost
No branches or pull requests
Issue #3184 had to do with inference failures around reborrowed pointers, but I neglected to handle reborrowed slices.
As a result, tests like this:
fail to compile. I have a patch coming soon.
The text was updated successfully, but these errors were encountered: