mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
15 lines
175 B
Rust
15 lines
175 B
Rust
// check-pass
|
|
|
|
fn foo(_: &mut i32) -> bool { true }
|
|
|
|
fn main() {
|
|
let opt = Some(92);
|
|
let mut x = 62;
|
|
|
|
if let Some(_) = opt {
|
|
|
|
} else if foo(&mut x) {
|
|
|
|
}
|
|
}
|