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