mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-24 14:17:41 +00:00
13 lines
172 B
Rust
13 lines
172 B
Rust
// check-pass
|
|
|
|
fn main() {
|
|
#[allow(unused_variables)]
|
|
if true {
|
|
let a = 1;
|
|
} else if false {
|
|
let b = 1;
|
|
} else {
|
|
let c = 1;
|
|
}
|
|
}
|