]> git.proxmox.com Git - rustc.git/blame - src/tools/clippy/tests/ui/cyclomatic_complexity_attr_used.stderr
New upstream version 1.25.0+dfsg1
[rustc.git] / src / tools / clippy / tests / ui / cyclomatic_complexity_attr_used.stderr
CommitLineData
ea8adc8c
XL
1error: the function has a cyclomatic complexity of 3
2 --> $DIR/cyclomatic_complexity_attr_used.rs:11:1
3 |
411 | / fn kaboom() {
512 | | if 42 == 43 {
613 | | panic!();
714 | | } else if "cake" == "lie" {
815 | | println!("what?");
916 | | }
1017 | | }
11 | |_^
12 |
13 = note: `-D cyclomatic-complexity` implied by `-D warnings`
14 = help: you could split it up into multiple smaller functions
15
2c00a5a8
XL
16error: aborting due to previous error
17