rust-clippy/tests/ui/dbg_macro.stderr

203 lines
4.9 KiB
Text
Raw Normal View History

2023-01-01 07:41:45 +00:00
error: the `dbg!` macro is intended as a debugging tool
2023-07-27 11:40:22 +00:00
--> $DIR/dbg_macro.rs:6:22
2019-02-01 19:54:51 +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`
2023-01-01 07:41:45 +00:00
help: remove the invocation before committing it to a version control system
|
LL | if let Some(n) = n.checked_sub(4) { n } else { n }
2021-08-11 14:21:33 +00:00
| ~~~~~~~~~~~~~~~~
2019-02-01 19:54:51 +00:00
2023-01-01 07:41:45 +00:00
error: the `dbg!` macro is intended as a debugging tool
2023-07-27 11:40:22 +00:00
--> $DIR/dbg_macro.rs:11:8
2019-02-01 19:54:51 +00:00
|
LL | if dbg!(n <= 1) {
| ^^^^^^^^^^^^
2019-10-26 19:53:42 +00:00
|
2023-01-01 07:41:45 +00:00
help: remove the invocation before committing it to a version control system
2019-02-01 19:54:51 +00:00
|
LL | if n <= 1 {
2021-08-11 14:21:33 +00:00
| ~~~~~~
2019-02-01 19:54:51 +00:00
2023-01-01 07:41:45 +00:00
error: the `dbg!` macro is intended as a debugging tool
2023-07-27 11:40:22 +00:00
--> $DIR/dbg_macro.rs:12:9
2019-02-01 19:54:51 +00:00
|
LL | dbg!(1)
| ^^^^^^^
2019-10-26 19:53:42 +00:00
|
2023-01-01 07:41:45 +00:00
help: remove the invocation before committing it to a version control system
|
LL | 1
2019-02-01 19:54:51 +00:00
|
2023-01-01 07:41:45 +00:00
error: the `dbg!` macro is intended as a debugging tool
2023-07-27 11:40:22 +00:00
--> $DIR/dbg_macro.rs:14:9
2019-02-01 19:54:51 +00:00
|
LL | dbg!(n * factorial(n - 1))
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
2019-10-26 19:53:42 +00:00
|
2023-01-01 07:41:45 +00:00
help: remove the invocation before committing it to a version control system
|
LL | n * factorial(n - 1)
2019-02-01 19:54:51 +00:00
|
2023-01-01 07:41:45 +00:00
error: the `dbg!` macro is intended as a debugging tool
2023-07-27 11:40:22 +00:00
--> $DIR/dbg_macro.rs:19:5
2019-01-30 17:39:38 +00:00
|
LL | dbg!(42);
| ^^^^^^^^
2019-10-26 19:53:42 +00:00
|
2023-01-01 07:41:45 +00:00
help: remove the invocation before committing it to a version control system
2019-01-30 17:39:38 +00:00
|
LL | 42;
2021-08-11 14:21:33 +00:00
| ~~
2019-02-01 19:54:51 +00:00
2023-01-01 07:41:45 +00:00
error: the `dbg!` macro is intended as a debugging tool
2023-07-27 11:40:22 +00:00
--> $DIR/dbg_macro.rs:20:5
2019-02-01 19:54:51 +00:00
|
LL | dbg!(dbg!(dbg!(42)));
| ^^^^^^^^^^^^^^^^^^^^
2019-10-26 19:53:42 +00:00
|
2023-01-01 07:41:45 +00:00
help: remove the invocation before committing it to a version control system
2019-02-01 19:54:51 +00:00
|
LL | dbg!(dbg!(42));
2021-08-11 14:21:33 +00:00
| ~~~~~~~~~~~~~~
2019-02-01 19:54:51 +00:00
2023-01-01 07:41:45 +00:00
error: the `dbg!` macro is intended as a debugging tool
2023-07-27 11:40:22 +00:00
--> $DIR/dbg_macro.rs:21:14
2019-02-01 19:54:51 +00:00
|
LL | foo(3) + dbg!(factorial(4));
| ^^^^^^^^^^^^^^^^^^
2019-10-26 19:53:42 +00:00
|
2023-01-01 07:41:45 +00:00
help: remove the invocation before committing it to a version control system
2019-02-01 00:23:40 +00:00
|
LL | foo(3) + factorial(4);
2021-08-11 14:21:33 +00:00
| ~~~~~~~~~~~~
2019-01-30 17:39:38 +00:00
2023-01-01 07:41:45 +00:00
error: the `dbg!` macro is intended as a debugging tool
2023-07-27 11:40:22 +00:00
--> $DIR/dbg_macro.rs:22:5
2022-02-11 14:45:56 +00:00
|
LL | dbg!(1, 2, dbg!(3, 4));
| ^^^^^^^^^^^^^^^^^^^^^^
|
2023-01-01 07:41:45 +00:00
help: remove the invocation before committing it to a version control system
2022-02-11 14:45:56 +00:00
|
LL | (1, 2, dbg!(3, 4));
| ~~~~~~~~~~~~~~~~~~
2023-01-01 07:41:45 +00:00
error: the `dbg!` macro is intended as a debugging tool
2023-07-27 11:40:22 +00:00
--> $DIR/dbg_macro.rs:23:5
2022-02-11 14:45:56 +00:00
|
LL | dbg!(1, 2, 3, 4, 5);
| ^^^^^^^^^^^^^^^^^^^
|
2023-01-01 07:41:45 +00:00
help: remove the invocation before committing it to a version control system
2022-02-11 14:45:56 +00:00
|
LL | (1, 2, 3, 4, 5);
| ~~~~~~~~~~~~~~~
2023-01-01 07:41:45 +00:00
error: the `dbg!` macro is intended as a debugging tool
2023-07-27 11:40:22 +00:00
--> $DIR/dbg_macro.rs:43:5
|
LL | dbg!();
| ^^^^^^^
|
help: remove the invocation before committing it to a version control system
|
LL - dbg!();
LL +
|
error: the `dbg!` macro is intended as a debugging tool
2023-07-27 11:40:22 +00:00
--> $DIR/dbg_macro.rs:45:13
|
LL | let _ = dbg!();
| ^^^^^^
|
help: remove the invocation before committing it to a version control system
|
LL | let _ = ();
| ~~
error: the `dbg!` macro is intended as a debugging tool
2023-07-27 11:40:22 +00:00
--> $DIR/dbg_macro.rs:46:9
|
LL | bar(dbg!());
| ^^^^^^
|
help: remove the invocation before committing it to a version control system
|
LL | bar(());
| ~~
error: the `dbg!` macro is intended as a debugging tool
2023-07-27 11:40:22 +00:00
--> $DIR/dbg_macro.rs:47:10
|
LL | foo!(dbg!());
| ^^^^^^
|
help: remove the invocation before committing it to a version control system
|
LL | foo!(());
| ~~
error: the `dbg!` macro is intended as a debugging tool
2023-07-27 11:40:22 +00:00
--> $DIR/dbg_macro.rs:48:16
|
LL | foo2!(foo!(dbg!()));
| ^^^^^^
|
help: remove the invocation before committing it to a version control system
|
LL | foo2!(foo!(()));
| ~~
error: the `dbg!` macro is intended as a debugging tool
2023-07-27 11:40:22 +00:00
--> $DIR/dbg_macro.rs:69:9
2022-02-11 14:45:56 +00:00
|
LL | dbg!(2);
| ^^^^^^^
|
2023-01-01 07:41:45 +00:00
help: remove the invocation before committing it to a version control system
2022-02-11 14:45:56 +00:00
|
LL | 2;
| ~
2023-01-01 07:41:45 +00:00
error: the `dbg!` macro is intended as a debugging tool
2023-07-27 11:40:22 +00:00
--> $DIR/dbg_macro.rs:75:5
2022-05-26 16:30:44 +00:00
|
LL | dbg!(1);
| ^^^^^^^
|
2023-01-01 07:41:45 +00:00
help: remove the invocation before committing it to a version control system
2022-05-26 16:30:44 +00:00
|
LL | 1;
| ~
2023-01-01 07:41:45 +00:00
error: the `dbg!` macro is intended as a debugging tool
2023-07-27 11:40:22 +00:00
--> $DIR/dbg_macro.rs:80:5
2022-05-26 16:30:44 +00:00
|
LL | dbg!(1);
| ^^^^^^^
|
2023-01-01 07:41:45 +00:00
help: remove the invocation before committing it to a version control system
2022-05-26 16:30:44 +00:00
|
LL | 1;
| ~
2023-01-01 07:41:45 +00:00
error: the `dbg!` macro is intended as a debugging tool
2023-07-27 11:40:22 +00:00
--> $DIR/dbg_macro.rs:86:9
2022-05-26 16:30:44 +00:00
|
LL | dbg!(1);
| ^^^^^^^
|
2023-01-01 07:41:45 +00:00
help: remove the invocation before committing it to a version control system
2022-05-26 16:30:44 +00:00
|
LL | 1;
| ~
error: aborting due to 18 previous errors
2019-01-30 17:39:38 +00:00