mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-11 16:15:03 +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;
|
|
}
|
|
}
|