blob: 022ac5fc113ddbf6a631ed1529ea1b4543a53924 [file] [log] [blame]
#![feature(bindings_after_at)]
fn main() {
let x = Some("s".to_string());
match x {
op_string @ Some(s) => {},
//~^ ERROR E0007
//~| ERROR E0382
None => {},
}
}