mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +00:00
38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
17 lines
464 B
Text
17 lines
464 B
Text
error: the function has a cyclomatic complexity of 3
|
|
--> $DIR/cyclomatic_complexity_attr_used.rs:9:1
|
|
|
|
|
LL | / fn kaboom() {
|
|
LL | | if 42 == 43 {
|
|
LL | | panic!();
|
|
LL | | } else if "cake" == "lie" {
|
|
LL | | println!("what?");
|
|
LL | | }
|
|
LL | | }
|
|
| |_^
|
|
|
|
|
= note: `-D clippy::cyclomatic-complexity` implied by `-D warnings`
|
|
= help: you could split it up into multiple smaller functions
|
|
|
|
error: aborting due to previous error
|
|
|