summaryrefslogtreecommitdiffstats
path: root/src/test/ui/match/expr_before_ident_pat.stderr
blob: 2bd1b3b9454a6606f98da129e2c876fda550bc29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0425]: cannot find value `a` in this scope
  --> $DIR/expr_before_ident_pat.rs:12:12
   |
LL |     funny!(a, a);
   |            ^ not found in this scope

error: arbitrary expressions aren't allowed in patterns
  --> $DIR/expr_before_ident_pat.rs:12:12
   |
LL |     funny!(a, a);
   |            ^

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0425`.