rust/tests/ui/match/issue-82866.rs
2023-01-11 09:32:08 +00:00

8 lines
171 B
Rust

fn main() {
match x {
//~^ ERROR cannot find value `x` in this scope
Some::<v>(v) => (),
//~^ ERROR cannot find type `v` in this scope
}
}