Skip to content
New issue

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

borrowck does not distinguish between "argument" and "local variable" anymore #24114

Closed
Swatinem opened this issue Apr 6, 2015 · 1 comment
Closed
Labels
A-diagnostics Area: Messages for errors, warnings, and lints

Comments

@Swatinem
Copy link
Contributor

Swatinem commented Apr 6, 2015

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 :-)

@steveklabnik steveklabnik added the A-diagnostics Area: Messages for errors, warnings, and lints label Apr 6, 2015
@Swatinem
Copy link
Contributor Author

Swatinem commented Apr 8, 2015

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-diagnostics Area: Messages for errors, warnings, and lints
Projects
None yet
Development

No branches or pull requests

2 participants