2018-07-28 17:34:52 +02:00
|
|
|
#![warn(clippy::cyclomatic_complexity)]
|
2017-05-17 14:19:44 +02:00
|
|
|
#![warn(unused)]
|
2016-11-02 10:29:57 +01:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
kaboom();
|
|
|
|
}
|
|
|
|
|
2018-05-19 14:04:57 +02:00
|
|
|
#[clippy::cyclomatic_complexity = "0"]
|
2017-02-08 14:58:07 +01:00
|
|
|
fn kaboom() {
|
2016-11-02 10:29:57 +01:00
|
|
|
if 42 == 43 {
|
|
|
|
panic!();
|
|
|
|
} else if "cake" == "lie" {
|
|
|
|
println!("what?");
|
|
|
|
}
|
|
|
|
}
|