rust/tests/ui/dbg_macro.stderr

60 lines
1.6 KiB
Plaintext
Raw Normal View History

2019-02-01 09:23:40 +09:00
error: `dbg!` macro is intended as a debugging tool
2019-02-02 04:54:51 +09:00
--> $DIR/dbg_macro.rs:4:22
|
LL | if let Some(n) = dbg!(n.checked_sub(4)) {
| ^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D clippy::dbg-macro` implied by `-D warnings`
= help: ensure to avoid having uses of it in version control
error: `dbg!` macro is intended as a debugging tool
--> $DIR/dbg_macro.rs:12:8
|
LL | if dbg!(n <= 1) {
| ^^^^^^^^^^^^
|
= help: ensure to avoid having uses of it in version control
error: `dbg!` macro is intended as a debugging tool
--> $DIR/dbg_macro.rs:13:9
|
LL | dbg!(1)
| ^^^^^^^
|
= help: ensure to avoid having uses of it in version control
error: `dbg!` macro is intended as a debugging tool
--> $DIR/dbg_macro.rs:15:9
|
LL | dbg!(n * factorial(n - 1))
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: ensure to avoid having uses of it in version control
error: `dbg!` macro is intended as a debugging tool
--> $DIR/dbg_macro.rs:20:5
2019-01-31 02:39:38 +09:00
|
LL | dbg!(42);
| ^^^^^^^^
|
2019-02-02 04:54:51 +09:00
= help: ensure to avoid having uses of it in version control
error: `dbg!` macro is intended as a debugging tool
--> $DIR/dbg_macro.rs:21:5
|
LL | dbg!(dbg!(dbg!(42)));
| ^^^^^^^^^^^^^^^^^^^^
|
= help: ensure to avoid having uses of it in version control
error: `dbg!` macro is intended as a debugging tool
--> $DIR/dbg_macro.rs:22:14
|
LL | foo(3) + dbg!(factorial(4));
| ^^^^^^^^^^^^^^^^^^
2019-02-01 09:23:40 +09:00
|
2019-02-02 04:54:51 +09:00
= help: ensure to avoid having uses of it in version control
2019-01-31 02:39:38 +09:00
2019-02-02 04:54:51 +09:00
error: aborting due to 7 previous errors
2019-01-31 02:39:38 +09:00