blob: 220b2ecf04d389150c91d2594bbcb3eb06c86ed6 [file] [log] [blame]
fn main() {
let e: i32;
match e {
//~^ ERROR use of possibly uninitialized variable
ref u if true => {}
ref v if true => {
let tx = 0;
&tx;
}
_ => (),
}
}