]> git.proxmox.com Git - rustc.git/blob - src/test/ui/rfc-2294-if-let-guard/bindings.rs
New upstream version 1.56.0~beta.4+dfsg1
[rustc.git] / src / test / ui / rfc-2294-if-let-guard / bindings.rs
1 #![feature(if_let_guard)]
2
3 fn main() {
4 match Some(None) {
5 Some(x) if let Some(y) = x => (x, y),
6 _ => y, //~ ERROR cannot find value `y`
7 }
8 y //~ ERROR cannot find value `y`
9 }