rust/tests/target/match-flattening.rs

24 lines
345 B
Rust
Raw Normal View History

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