44 lines
558 B
Rust
44 lines
558 B
Rust
fn main() {
|
|
if false {
|
|
();
|
|
();
|
|
}
|
|
|
|
if false
|
|
// lone if comment
|
|
{
|
|
();
|
|
();
|
|
}
|
|
|
|
let a = if 0 > 1 { unreachable!() } else { 0x0 };
|
|
|
|
if true {
|
|
();
|
|
} else if false {
|
|
();
|
|
();
|
|
} else {
|
|
();
|
|
();
|
|
();
|
|
}
|
|
|
|
if true
|
|
// else-if-chain if comment
|
|
{
|
|
();
|
|
} else if false
|
|
// else-if-chain else-if comment
|
|
{
|
|
();
|
|
();
|
|
} else
|
|
// else-if-chain else comment
|
|
{
|
|
();
|
|
();
|
|
();
|
|
}
|
|
}
|