rust/tests/ui/suggestions/silenced-binding-typo.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
363 B
Plaintext
Raw Normal View History

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`.