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