rust/tests/target/match-flattening.rs

24 lines
345 B
Rust
Raw Normal View History

2018-09-11 08:31:35 +03:00
fn main() {
match option {
None => {
if condition {
true
} else {
false
}
}
}
}
fn main() {
match option {
None => {
if condition {
true
} else {
false
}
}
}
}