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

Confusing error message: dereference of &-pointer #17561

Closed
steveklabnik opened this issue Sep 26, 2014 · 5 comments
Closed

Confusing error message: dereference of &-pointer #17561

steveklabnik opened this issue Sep 26, 2014 · 5 comments
Labels
A-diagnostics Area: Messages for errors, warnings, and lints

Comments

@steveklabnik
Copy link
Member

This code:

fn main() {
    let bar = &5;
    foo(&*bar);
}

fn foo(x: &mut int) -> &int {
    x
}

Gives this error message:

hello.rs:3:9: 3:14 error: cannot borrow immutable dereference of `&`-pointer as mutable
hello.rs:3     foo(&*bar);
                   ^~~~~

This error is correct, but is really complicated. First of all, &pointer should probably use 'reference,' the term we've settled on for &T. More importantly, it's just a very dense sentence. This came up in IRC this morning.

@kovek
Copy link

kovek commented Sep 26, 2014

I don't know how this one will be handled but I wanted to say that, in the case we discussed, it was even more complicated:

"error: cannot borrow immutable dereference of `&`-pointer `*text` as mutable".

In the error message, *text is the dereference of &-pointer, so I think the error message should have commas around `text:

"error: cannot borrow immutable dereference of `&`-pointer, `*text`, as mutable".

(parenthesizes could do also, I think)

@kornelski
Copy link
Contributor

👍 The error message is 100% jargon, and it doesn't give any hint how this situation can be fixed.

let mut foo: T;
func(&foo);

cannot borrow immutable dereference of &-pointer as mutable

  • I thought & are references/borrows and * are pointers, so the phrase "&-pointer" confuses me.
  • I thought *foo is a dereference, and &foo is taking a reference, so "dereference" here confuses me.
  • What immutable!? I've got mutable variable and function that accepts mutable reference!

Eventually I've figured out that &foo is immutable regardless of mutability of everything everywhere, so how about message like:

Expected mutable reference, but &foo is an immutable reference. Did you mean &mut foo?

@sanxiyn
Copy link
Member

sanxiyn commented Jan 12, 2015

I have a change related to this. For the original test case, do you think this is an improvement?

hello.rs:3:9: 3:14 error: mismatched types: expected `&mut isize`, found `&_` (values differ in mutability)
hello.rs:3     foo(&*bar);
                   ^~~~~

@huonw huonw added the A-diagnostics Area: Messages for errors, warnings, and lints label Jan 20, 2015
@huonw
Copy link
Member

huonw commented Jan 20, 2015

@sanxiyn and I were discussing this on IRC and both of us have seen a lot of people tripped up by it, possibly even the most common beginner mistake in Rust.

barosl added a commit to barosl/rust that referenced this issue Jan 20, 2015
This is caught in borrowck now, but catching in typeck is faster and improves diagnostics.

CC rust-lang#17561.

r? @nikomatsakis
@steveklabnik
Copy link
Member Author

With #21424 merged, this is the error:

hello.rs:3:17: 3:22 error: cannot borrow immutable borrowed content as mutable
hello.rs:3             foo(&*bar);
                           ^~~~~

Seems good!

lnicola pushed a commit to lnicola/rust that referenced this issue Jul 11, 2024
Add --keep-going to the check command

Fixes rust-lang/rustlings#1628

`@Veykril` I am not sure about what you meant with "unconditionally" in rust-lang/rustlings#1628 (comment), but I didn't find out how to get the version of the toolchain anyway to do a check like in [this snippet](https://github.com/rust-lang/rust-analyzer/blob/a5b21ea0aa644dffd7cf958b43f11f221d53404e/crates/project-model/src/build_scripts.rs#L125-L127). Is this check even required if rust-analyzer was installed with the toolchain?

`--keep-going` was [stabilized in 1.74](https://github.com/rust-lang/cargo/blob/master/CHANGELOG.md#cargo-174-2023-11-16)
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

5 participants