mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-21 16:59:05 +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;
|
|
}
|
|
}
|