rust/src/test/ui/issues/issue-41272.rs
2019-07-03 06:30:28 +09:00

22 lines
344 B
Rust

// build-pass (FIXME(62277): could be check-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() {}