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
The following example:
fn foo(v: Vec<u32>) { v.push(4); } fn main() { foo(vec![1, 2, 3]); }
generates the following error:
mut.rs:2:5: 2:6 error: cannot borrow immutable local variable `v` as mutable mut.rs:2 v.push(4); ^
A few month ago, it used to say "argument" instead of "local variable".
I already found the code that does this, still need to figure out how to fix it, give me a few days :-)
The text was updated successfully, but these errors were encountered:
https://github.com/rust-lang/rust/blob/master/src/librustc/middle/mem_categorization.rs#L1534
I will always get a NodeLocal here for some reason. Still need to figure out why that happens.
NodeLocal
Sorry, something went wrong.
Auto merge of #29327 - sanxiyn:argument, r=nrc
679b5a9
Fix #24114.
No branches or pull requests
The following example:
generates the following error:
A few month ago, it used to say "argument" instead of "local variable".
I already found the code that does this, still need to figure out how to fix it, give me a few days :-)
The text was updated successfully, but these errors were encountered: