mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
13 lines
221 B
Rust
13 lines
221 B
Rust
// check-pass
|
|
|
|
#![deny(unused_braces)]
|
|
|
|
fn main() {
|
|
let mut a = Some(3);
|
|
// Shouldn't warn below `a`.
|
|
while let Some(ref mut v) = {a} {
|
|
a.as_mut().map(|a| std::mem::swap(a, v));
|
|
break;
|
|
}
|
|
}
|