mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-08 17:03:49 +00:00
12 lines
129 B
Rust
12 lines
129 B
Rust
//@ run-pass
|
|
|
|
#![allow(irrefutable_let_patterns)]
|
|
|
|
fn main() {
|
|
if let _ = 5 {}
|
|
|
|
while let _ = 5 {
|
|
break;
|
|
}
|
|
}
|