mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
b0d17f35d9
When encountering a binding that isn't found but has a typo suggestion for a binding with a leading underscore, suggest changing the binding definition instead of the use place. Fix #60164.
15 lines
363 B
Plaintext
15 lines
363 B
Plaintext
error[E0425]: cannot find value `x` in this scope
|
|
--> $DIR/silenced-binding-typo.rs:4:14
|
|
|
|
|
LL | let _y = x;
|
|
| ^
|
|
|
|
|
help: a local variable with a similar name exists, consider changing it
|
|
|
|
|
LL | let x = 42;
|
|
| ~
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0425`.
|