blob: 8fc6342002bb21fd36212ca394ac8f8e3fe683f5 [file] [log] [blame]
fn main() {
let x = Some("s".to_string());
match x {
op_string @ Some(s) => {},
//~^ ERROR E0007
//~| ERROR E0303
None => {},
}
}