18 lines
265 B
Rust
18 lines
265 B
Rust
#![feature(tool_attributes)]
|
|
|
|
#![warn(cyclomatic_complexity)]
|
|
#![warn(unused)]
|
|
|
|
fn main() {
|
|
kaboom();
|
|
}
|
|
|
|
#[clippy::cyclomatic_complexity = "0"]
|
|
fn kaboom() {
|
|
if 42 == 43 {
|
|
panic!();
|
|
} else if "cake" == "lie" {
|
|
println!("what?");
|
|
}
|
|
}
|