2019-02-01 00:23:40 +00:00
|
|
|
error: `dbg!` macro is intended as a debugging tool
|
2019-02-01 19:54:51 +00:00
|
|
|
--> $DIR/dbg_macro.rs:4:22
|
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
LL | if let Some(n) = dbg!(n.checked_sub(4)) { n } else { n }
|
2019-02-01 19:54:51 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::dbg-macro` implied by `-D warnings`
|
2019-02-03 09:28:42 +00:00
|
|
|
help: ensure to avoid having uses of it in version control
|
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
LL | if let Some(n) = n.checked_sub(4) { n } else { n }
|
2019-02-03 09:28:42 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^
|
2019-02-01 19:54:51 +00:00
|
|
|
|
|
|
|
error: `dbg!` macro is intended as a debugging tool
|
2021-03-12 14:30:50 +00:00
|
|
|
--> $DIR/dbg_macro.rs:8:8
|
2019-02-01 19:54:51 +00:00
|
|
|
|
|
|
|
|
LL | if dbg!(n <= 1) {
|
|
|
|
| ^^^^^^^^^^^^
|
2019-10-26 19:53:42 +00:00
|
|
|
|
|
2019-02-03 09:28:42 +00:00
|
|
|
help: ensure to avoid having uses of it in version control
|
2019-02-01 19:54:51 +00:00
|
|
|
|
|
2019-02-03 09:28:42 +00:00
|
|
|
LL | if n <= 1 {
|
|
|
|
| ^^^^^^
|
2019-02-01 19:54:51 +00:00
|
|
|
|
|
|
|
error: `dbg!` macro is intended as a debugging tool
|
2021-03-12 14:30:50 +00:00
|
|
|
--> $DIR/dbg_macro.rs:9:9
|
2019-02-01 19:54:51 +00:00
|
|
|
|
|
|
|
|
LL | dbg!(1)
|
|
|
|
| ^^^^^^^
|
2019-10-26 19:53:42 +00:00
|
|
|
|
|
2019-02-03 09:28:42 +00:00
|
|
|
help: ensure to avoid having uses of it in version control
|
|
|
|
|
|
|
|
|
LL | 1
|
2019-02-01 19:54:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
error: `dbg!` macro is intended as a debugging tool
|
2021-03-12 14:30:50 +00:00
|
|
|
--> $DIR/dbg_macro.rs:11:9
|
2019-02-01 19:54:51 +00:00
|
|
|
|
|
|
|
|
LL | dbg!(n * factorial(n - 1))
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2019-10-26 19:53:42 +00:00
|
|
|
|
|
2019-02-03 09:28:42 +00:00
|
|
|
help: ensure to avoid having uses of it in version control
|
|
|
|
|
|
|
|
|
LL | n * factorial(n - 1)
|
2019-02-01 19:54:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
error: `dbg!` macro is intended as a debugging tool
|
2021-03-12 14:30:50 +00:00
|
|
|
--> $DIR/dbg_macro.rs:16:5
|
2019-01-30 17:39:38 +00:00
|
|
|
|
|
|
|
|
LL | dbg!(42);
|
|
|
|
| ^^^^^^^^
|
2019-10-26 19:53:42 +00:00
|
|
|
|
|
2019-02-03 09:28:42 +00:00
|
|
|
help: ensure to avoid having uses of it in version control
|
2019-01-30 17:39:38 +00:00
|
|
|
|
|
2019-02-03 09:28:42 +00:00
|
|
|
LL | 42;
|
|
|
|
| ^^
|
2019-02-01 19:54:51 +00:00
|
|
|
|
|
|
|
error: `dbg!` macro is intended as a debugging tool
|
2021-03-12 14:30:50 +00:00
|
|
|
--> $DIR/dbg_macro.rs:17:5
|
2019-02-01 19:54:51 +00:00
|
|
|
|
|
|
|
|
LL | dbg!(dbg!(dbg!(42)));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
2019-10-26 19:53:42 +00:00
|
|
|
|
|
2019-02-03 09:28:42 +00:00
|
|
|
help: ensure to avoid having uses of it in version control
|
2019-02-01 19:54:51 +00:00
|
|
|
|
|
2019-02-03 09:28:42 +00:00
|
|
|
LL | dbg!(dbg!(42));
|
|
|
|
| ^^^^^^^^^^^^^^
|
2019-02-01 19:54:51 +00:00
|
|
|
|
|
|
|
error: `dbg!` macro is intended as a debugging tool
|
2021-03-12 14:30:50 +00:00
|
|
|
--> $DIR/dbg_macro.rs:18:14
|
2019-02-01 19:54:51 +00:00
|
|
|
|
|
|
|
|
LL | foo(3) + dbg!(factorial(4));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
2019-10-26 19:53:42 +00:00
|
|
|
|
|
2019-02-03 09:28:42 +00:00
|
|
|
help: ensure to avoid having uses of it in version control
|
2019-02-01 00:23:40 +00:00
|
|
|
|
|
2019-02-03 09:28:42 +00:00
|
|
|
LL | foo(3) + factorial(4);
|
|
|
|
| ^^^^^^^^^^^^
|
2019-01-30 17:39:38 +00:00
|
|
|
|
2019-02-01 19:54:51 +00:00
|
|
|
error: aborting due to 7 previous errors
|
2019-01-30 17:39:38 +00:00
|
|
|
|