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

confusable_idents lint diagnostic is confusing #76140

Closed
fintelia opened this issue Aug 31, 2020 · 0 comments · Fixed by #114472
Closed

confusable_idents lint diagnostic is confusing #76140

fintelia opened this issue Aug 31, 2020 · 0 comments · Fixed by #114472
Labels
A-lints Area: Lints (warnings about flaws in source code) such as unused_mut. D-confusing Diagnostics: Confusing error or lint that should be reworked. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.

Comments

@fintelia
Copy link
Contributor

If you have a program containing two variables named ρ and p (that is the Greek letter Rho and the English letter P respectively), you'll get a warning like this:

warning: identifier pair considered confusable between `p` and `ρ`
   --> src/foo.rs:96:13
    |
96  |         let ρ = ...;
    |             ^
    | 
   ::: src/lib.rs:459:24
    |
459 |                 .map(|(p, idx)| { ... })
    |                        - this is where the previous identifier occurred
    |
    = note: `#[warn(confusable_idents)]` on by default

This lint is an extremely clever way to detect possible homoglyph issues. However, I think that this message could be worded better to help the programmer if the non-ascii indentifier was actually intentional.

To start, there should be more emphasis that this warning was triggered because the program contains both of the listed identifiers. As far as I know, this is the only lint that can trigger based on the names of local variables in completely non-overlapping scopes and even when they are in completely different modules. Perhaps it could read something like

warning: crate contains both p and ρ identifiers which might be confused

Additionally, the second code snippet annotation would be better with "other" rather than "previous" since the two usages might not be ordered with respect to each other.

@estebank estebank added A-lints Area: Lints (warnings about flaws in source code) such as unused_mut. D-confusing Diagnostics: Confusing error or lint that should be reworked. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. labels Aug 31, 2020
matthiaskrgr added a commit to matthiaskrgr/rust that referenced this issue Aug 4, 2023
@bors bors closed this as completed in 553508c Aug 4, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-lints Area: Lints (warnings about flaws in source code) such as unused_mut. D-confusing Diagnostics: Confusing error or lint that should be reworked. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants