rust-clippy/tests/ui/dbg_macro/dbg_macro.stderr

220 lines
5.8 KiB
Text
Raw Normal View History

error: the `dbg!` macro is intended as a debugging tool
2024-02-20 18:11:19 +00:00
--> tests/ui/dbg_macro/dbg_macro.rs:5:22
2023-11-01 16:19:06 +00:00
|
LL | if let Some(n) = dbg!(n.checked_sub(4)) { n } else { n }
| ^^^^^^^^^^^^^^^^^^^^^^
|
2024-02-20 18:11:19 +00:00
= note: `-D clippy::dbg-macro` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::dbg_macro)]`
2023-11-01 16:19:06 +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
error: the `dbg!` macro is intended as a debugging tool
2024-02-20 18:11:19 +00:00
--> tests/ui/dbg_macro/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
|
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
error: the `dbg!` macro is intended as a debugging tool
2024-02-20 18:11:19 +00:00
--> tests/ui/dbg_macro/dbg_macro.rs:13:9
2019-02-01 19:54:51 +00:00
|
LL | dbg!(1)
| ^^^^^^^
2019-10-26 19:53:42 +00:00
|
help: remove the invocation before committing it to a version control system
|
LL | 1
2019-02-01 19:54:51 +00:00
|
error: the `dbg!` macro is intended as a debugging tool
2024-02-20 18:11:19 +00:00
--> tests/ui/dbg_macro/dbg_macro.rs:16:9
2019-02-01 19:54:51 +00:00
|
LL | dbg!(n * factorial(n - 1))
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
2019-10-26 19:53:42 +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
|
error: the `dbg!` macro is intended as a debugging tool
2024-02-20 18:11:19 +00:00
--> tests/ui/dbg_macro/dbg_macro.rs:22:5
2019-01-30 17:39:38 +00:00
|
LL | dbg!(42);
| ^^^^^^^^
2019-10-26 19:53:42 +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
error: the `dbg!` macro is intended as a debugging tool
2024-02-20 18:11:19 +00:00
--> tests/ui/dbg_macro/dbg_macro.rs:24:14
2019-02-01 19:54:51 +00:00
|
LL | foo(3) + dbg!(factorial(4));
| ^^^^^^^^^^^^^^^^^^
2019-10-26 19:53:42 +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
error: the `dbg!` macro is intended as a debugging tool
2024-02-20 18:11:19 +00:00
--> tests/ui/dbg_macro/dbg_macro.rs:26:5
|
LL | dbg!(1, 2, 3, 4, 5);
| ^^^^^^^^^^^^^^^^^^^
|
help: remove the invocation before committing it to a version control system
|
LL | (1, 2, 3, 4, 5);
| ~~~~~~~~~~~~~~~
error: the `dbg!` macro is intended as a debugging tool
--> tests/ui/dbg_macro/dbg_macro.rs:48: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
--> tests/ui/dbg_macro/dbg_macro.rs:51: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
--> tests/ui/dbg_macro/dbg_macro.rs:53: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
--> tests/ui/dbg_macro/dbg_macro.rs:55: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
--> tests/ui/dbg_macro/dbg_macro.rs:57: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
--> tests/ui/dbg_macro/dbg_macro.rs:43:13
|
LL | dbg!();
| ^^^^^^^
...
LL | expand_to_dbg!();
| ---------------- in this macro invocation
|
= note: this error originates in the macro `expand_to_dbg` (in Nightly builds, run with -Z macro-backtrace for more info)
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
--> tests/ui/dbg_macro/dbg_macro.rs:79:9
|
LL | dbg!(2);
| ^^^^^^^
|
help: remove the invocation before committing it to a version control system
|
LL | 2;
| ~
error: the `dbg!` macro is intended as a debugging tool
--> tests/ui/dbg_macro/dbg_macro.rs:86:5
|
LL | dbg!(1);
| ^^^^^^^
|
help: remove the invocation before committing it to a version control system
|
LL | 1;
| ~
error: the `dbg!` macro is intended as a debugging tool
--> tests/ui/dbg_macro/dbg_macro.rs:92:5
|
LL | dbg!(1);
| ^^^^^^^
|
help: remove the invocation before committing it to a version control system
|
LL | 1;
| ~
error: the `dbg!` macro is intended as a debugging tool
--> tests/ui/dbg_macro/dbg_macro.rs:99:9
|
LL | dbg!(1);
| ^^^^^^^
|
help: remove the invocation before committing it to a version control system
|
LL | 1;
| ~
error: the `dbg!` macro is intended as a debugging tool
--> tests/ui/dbg_macro/dbg_macro.rs:106:31
|
LL | println!("dbg: {:?}", dbg!(s));
| ^^^^^^^
|
help: remove the invocation before committing it to a version control system
|
LL | println!("dbg: {:?}", s);
| ~
error: the `dbg!` macro is intended as a debugging tool
--> tests/ui/dbg_macro/dbg_macro.rs:108:22
|
LL | print!("{}", dbg!(s));
| ^^^^^^^
|
help: remove the invocation before committing it to a version control system
|
LL | print!("{}", s);
| ~
error: aborting due to 19 previous errors
2019-01-30 17:39:38 +00:00