mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-15 06:42:57 +00:00
14 lines
205 B
Plaintext
14 lines
205 B
Plaintext
//@ run-rustfix
|
|
fn main() {}
|
|
fn _foo() -> bool {
|
|
if true { true } else { false }
|
|
}
|
|
|
|
fn _bar() -> bool {
|
|
if true { true } else { false }
|
|
}
|
|
|
|
fn _baz() -> bool {
|
|
if true { true } else { false }
|
|
}
|