mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 07:04:18 +00:00
16 lines
334 B
Rust
16 lines
334 B
Rust
#![warn(unused, clippy::cognitive_complexity)]
|
|
#![allow(unused_crate_dependencies)]
|
|
|
|
fn main() {
|
|
kaboom();
|
|
}
|
|
|
|
#[clippy::cognitive_complexity = "0"]
|
|
fn kaboom() {
|
|
//~^ ERROR: the function has a cognitive complexity of (3/0)
|
|
if 42 == 43 {
|
|
panic!();
|
|
} else if "cake" == "lie" {
|
|
println!("what?");
|
|
}
|
|
}
|