]> 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 f8342f0d9e5022c7624c9b2474011ad7f6478141..dde803880cabb77a25a81340d4ee5d44a9b08534 100644 (file)
@@ -1,13 +1,13 @@
 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: `-D clippy::cyclomatic-complexity` implied by `-D warnings`