1 2 3 4 5 6 7 8 9 10 11 12
fn main() { let e: i32; match e { //~^ ERROR E0381 ref u if true => {} ref v if true => { let tx = 0; &tx; } _ => (), } }