mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
15 lines
243 B
Rust
15 lines
243 B
Rust
#![warn(clippy::cyclomatic_complexity)]
|
|
#![warn(unused)]
|
|
|
|
fn main() {
|
|
kaboom();
|
|
}
|
|
|
|
#[clippy::cyclomatic_complexity = "0"]
|
|
fn kaboom() {
|
|
if 42 == 43 {
|
|
panic!();
|
|
} else if "cake" == "lie" {
|
|
println!("what?");
|
|
}
|
|
}
|