]> git.proxmox.com Git - rustc.git/blame - src/test/ui/borrowck/issue-62107-match-arm-scopes.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / borrowck / issue-62107-match-arm-scopes.rs
CommitLineData
416331ca
XL
1fn main() {
2 let e: i32;
3 match e {
064997fb 4 //~^ ERROR E0381
416331ca
XL
5 ref u if true => {}
6 ref v if true => {
7 let tx = 0;
8 &tx;
9 }
10 _ => (),
11 }
12}