blob: 2463b7f3eacc7eb543c41c89c9af226e86b9d1bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
error[E0425]: cannot find value `y` in this scope
--> $DIR/bindings.rs:6:14
|
LL | _ => y,
| ^ not found in this scope
error[E0425]: cannot find value `y` in this scope
--> $DIR/bindings.rs:8:5
|
LL | y
| ^ not found in this scope
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0425`.
|