7 lines
167 B
Rust
7 lines
167 B
Rust
fn main() {
|
|
match Some(()) {
|
|
None => { },
|
|
option if option.take().is_none() => {}, //~ ERROR E0301
|
|
Some(_) => { } //~^ ERROR E0596
|
|
}
|
|
}
|