mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-14 01:25:54 +00:00
11 lines
204 B
Rust
11 lines
204 B
Rust
fn main() {
|
|
if false {
|
|
if false {
|
|
} else {
|
|
// A let binding here seems necessary to trigger it.
|
|
let _ = ();
|
|
}
|
|
} else if let false = false {
|
|
}
|
|
}
|