mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-03 02:54:47 +00:00
12 lines
128 B
Rust
12 lines
128 B
Rust
// run-pass
|
|
|
|
#![allow(irrefutable_let_patterns)]
|
|
|
|
fn main() {
|
|
if let _ = 5 {}
|
|
|
|
while let _ = 5 {
|
|
break;
|
|
}
|
|
}
|