]> git.proxmox.com Git - rustc.git/blame - src/test/ui/match/issue-82866.rs
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / ui / match / issue-82866.rs
CommitLineData
04454e1e
FG
1fn main() {
2 match x {
3 //~^ ERROR cannot find value `x` in this scope
4 Some::<v>(v) => (),
5 //~^ ERROR cannot find type `v` in this scope
6 }
7}