]> git.lizzy.rs Git - rust.git/blob - src/test/ui/match/issue-82866.rs
Auto merge of #106349 - LeSeulArtichaut:dyn-star-tracking-issue, r=jackh726
[rust.git] / src / test / ui / match / issue-82866.rs
1 fn 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 }