rust/src/test/ui/issues/issue-41272.rs
2018-12-25 21:08:33 -07:00

22 lines
309 B
Rust

// compile-pass
#![allow(dead_code)]
struct Foo;
impl Foo {
fn bar(&mut self) -> bool { true }
}
fn error(foo: &mut Foo) {
if let Some(_) = Some(true) {
} else if foo.bar() {}
}
fn ok(foo: &mut Foo) {
if let Some(_) = Some(true) {
} else {
if foo.bar() {}
}
}
fn main() {}