summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/silenced-binding-typo.stderr
blob: 8dbd94208d614463391f366d875d99976ff19f87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 1 previous error

For more information about this error, try `rustc --explain E0425`.