mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
17 lines
266 B
Rust
17 lines
266 B
Rust
#![feature(plugin, custom_attribute)]
|
|
|
|
#![warn(cyclomatic_complexity)]
|
|
#![warn(unused)]
|
|
|
|
fn main() {
|
|
kaboom();
|
|
}
|
|
|
|
#[cyclomatic_complexity = "0"]
|
|
fn kaboom() {
|
|
if 42 == 43 {
|
|
panic!();
|
|
} else if "cake" == "lie" {
|
|
println!("what?");
|
|
}
|
|
}
|