rust/tests/ui/dbg_macro.stderr

15 lines
315 B
Plaintext
Raw Normal View History

2019-02-01 01:23:40 +01:00
error: `dbg!` macro is intended as a debugging tool
--> $DIR/dbg_macro.rs:4:5
2019-01-30 18:39:38 +01:00
|
LL | dbg!(42);
| ^^^^^^^^
|
= note: `-D clippy::dbg-macro` implied by `-D warnings`
2019-02-01 01:23:40 +01:00
help: ensure to avoid having uses of it in version control
|
LL | 42;
| ^^
2019-01-30 18:39:38 +01:00
error: aborting due to previous error