2021-12-18 17:23:49 +00:00
|
|
|
error[E0425]: cannot find value `a` in this scope
|
2022-09-24 15:22:04 +00:00
|
|
|
--> $DIR/expr_before_ident_pat.rs:10:12
|
2021-12-24 00:03:30 +00:00
|
|
|
|
|
|
|
|
LL | funny!(a, a);
|
2021-12-18 17:23:49 +00:00
|
|
|
| ^ not found in this scope
|
2021-12-24 00:03:30 +00:00
|
|
|
|
2021-12-18 17:23:49 +00:00
|
|
|
error: arbitrary expressions aren't allowed in patterns
|
2022-09-24 15:22:04 +00:00
|
|
|
--> $DIR/expr_before_ident_pat.rs:10:12
|
2021-12-24 00:03:30 +00:00
|
|
|
|
|
|
|
|
LL | funny!(a, a);
|
2021-12-18 17:23:49 +00:00
|
|
|
| ^
|
2021-12-24 00:03:30 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0425`.
|