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

NLL Diagnostic Review 3: missing borrow error justifications for unions #57100

Closed
davidtwco opened this issue Dec 24, 2018 · 0 comments
Closed
Assignees
Labels
A-NLL Area: Non-lexical lifetimes (NLL) NLL-diagnostics Working towards the "diagnostic parity" goal P-low Low priority

Comments

@davidtwco
Copy link
Member

For the ui/borrowck/borrowck-union-borrow.ast.nll.stderr test, the AST borrow checker indicates that the borrow of u.b is causing the borrow of the union u itself, thus justifying the complaint about the borrow of u.a.

However, the NLL borrow checker just says that u.b is already borrowed, which is less clear when its pointing at a borrow of u.a.

@davidtwco davidtwco added P-low Low priority A-NLL Area: Non-lexical lifetimes (NLL) NLL-diagnostics Working towards the "diagnostic parity" goal labels Dec 24, 2018
@davidtwco davidtwco self-assigned this Dec 24, 2018
Centril added a commit to Centril/rust that referenced this issue Jan 13, 2019
NLL: Add union justifications to conflicting borrows.

Fixes rust-lang#57100.

This PR adds justifications to error messages for conflicting borrows of union fields.

Where previously an error message would say ``cannot borrow `u.b` as mutable..``, it now says ``cannot borrow `u` (via `u.b`) as mutable..``.

r? @pnkfelix
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-NLL Area: Non-lexical lifetimes (NLL) NLL-diagnostics Working towards the "diagnostic parity" goal P-low Low priority
Projects
None yet
Development

No branches or pull requests

1 participant