mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-04 12:44:40 +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 {
|
|
}
|
|
}
|