mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
14 lines
376 B
Text
14 lines
376 B
Text
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 renaming `_x` into `x`
|
|
|
|
|
LL | let x = 42;
|
|
| ~
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0425`.
|