error: the function has a cyclomatic complexity of 3 --> $DIR/cyclomatic_complexity_attr_used.rs:18:1 | 18 | / fn kaboom() { 19 | | if 42 == 43 { 20 | | panic!(); 21 | | } else if "cake" == "lie" { 22 | | println!("what?"); 23 | | } 24 | | } | |_^ | = 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