2021-12-18 11:23:49 -06:00
|
|
|
error[E0425]: cannot find value `a` in this scope
|
2022-09-24 10:22:04 -05:00
|
|
|
--> $DIR/expr_before_ident_pat.rs:10:12
|
2021-12-23 18:03:30 -06:00
|
|
|
|
|
|
|
|
LL | funny!(a, a);
|
2021-12-18 11:23:49 -06:00
|
|
|
| ^ not found in this scope
|
2021-12-23 18:03:30 -06:00
|
|
|
|
2021-12-18 11:23:49 -06:00
|
|
|
error: arbitrary expressions aren't allowed in patterns
|
2022-09-24 10:22:04 -05:00
|
|
|
--> $DIR/expr_before_ident_pat.rs:10:12
|
2021-12-23 18:03:30 -06:00
|
|
|
|
|
|
|
|
LL | funny!(a, a);
|
2021-12-18 11:23:49 -06:00
|
|
|
| ^
|
2024-04-28 08:14:32 -05:00
|
|
|
|
|
2024-04-29 07:53:38 -05:00
|
|
|
= note: the `expr` fragment specifier forces the metavariable's content to be an expression
|
2021-12-23 18:03:30 -06:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0425`.
|