]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/cyclomatic_complexity_attr_used.stderr
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / cyclomatic_complexity_attr_used.stderr
index 5086d5117539a74458241d0f16874782c2d5cb4d..dde803880cabb77a25a81340d4ee5d44a9b08534 100644 (file)
@@ -1,20 +1,16 @@
 error: the function has a cyclomatic complexity of 3
-  --> $DIR/cyclomatic_complexity_attr_used.rs:11:1
+  --> $DIR/cyclomatic_complexity_attr_used.rs:18:1
    |
-11 | / fn kaboom() {
-12 | |     if 42 == 43 {
-13 | |         panic!();
-14 | |     } else if "cake" == "lie" {
-15 | |         println!("what?");
-16 | |     }
-17 | | }
+LL | / fn kaboom() {
+LL | |     if 42 == 43 {
+LL | |         panic!();
+LL | |     } else if "cake" == "lie" {
+LL | |         println!("what?");
+LL | |     }
+LL | | }
    | |_^
    |
-note: lint level defined here
-  --> $DIR/cyclomatic_complexity_attr_used.rs:3:9
-   |
-3  | #![deny(cyclomatic_complexity)]
-   |         ^^^^^^^^^^^^^^^^^^^^^
+   = 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