]> git.lizzy.rs Git - rust.git/blob - src/test/ui/match/issue-82866.stderr
regression test for #82866
[rust.git] / src / test / ui / match / issue-82866.stderr
1 error[E0425]: cannot find value `x` in this scope
2   --> $DIR/issue-82866.rs:2:11
3    |
4 LL |     match x {
5    |           ^ not found in this scope
6
7 error[E0412]: cannot find type `v` in this scope
8   --> $DIR/issue-82866.rs:4:16
9    |
10 LL |         Some::<v>(v) => (),
11    |                ^ not found in this scope
12
13 error: aborting due to 2 previous errors
14
15 Some errors have detailed explanations: E0412, E0425.
16 For more information about an error, try `rustc --explain E0412`.