rust/tests/ui/match/issue-82866.rs

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

8 lines
171 B
Rust
Raw Normal View History

2022-04-06 23:43:34 -05:00
fn main() {
match x {
//~^ ERROR cannot find value `x` in this scope
Some::<v>(v) => (),
//~^ ERROR cannot find type `v` in this scope
}
}