rust-clippy/tests/ui/cyclomatic_complexity_attr_used.rs

18 lines
284 B
Rust
Raw Normal View History

#![feature(plugin, custom_attribute)]
#![plugin(clippy)]
#![deny(cyclomatic_complexity)]
#![deny(unused)]
fn main() {
kaboom();
}
#[cyclomatic_complexity = "0"]
2017-02-08 13:58:07 +00:00
fn kaboom() {
if 42 == 43 {
panic!();
} else if "cake" == "lie" {
println!("what?");
}
}