rust/tests/ui/match/expr_before_ident_pat.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
518 B
Plaintext
Raw Normal View History

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
|
LL | funny!(a, a);
| ^ not found in this scope
error: arbitrary expressions aren't allowed in patterns
2022-09-24 10:22:04 -05:00
--> $DIR/expr_before_ident_pat.rs:10:12
|
LL | funny!(a, a);
| ^
|
2024-04-29 07:53:38 -05:00
= note: the `expr` fragment specifier forces the metavariable's content to be an expression
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0425`.