mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
11 lines
232 B
Rust
11 lines
232 B
Rust
#![deny(clippy::if_not_else)]
|
|
|
|
fn show_permissions(flags: u32) {
|
|
if flags & 0x0F00 != 0 {
|
|
println!("Has the 0x0F00 permission.");
|
|
} else {
|
|
println!("The 0x0F00 permission is missing.");
|
|
}
|
|
}
|
|
|
|
fn main() {}
|