]> git.lizzy.rs Git - rust.git/blob - tests/ui/dbg_macro.stderr
fix category and use suggestion
[rust.git] / tests / ui / dbg_macro.stderr
1 error: `dbg!` macro is intended as a debugging tool
2   --> $DIR/dbg_macro.rs:4:5
3    |
4 LL |     dbg!(42);
5    |     ^^^^^^^^
6    |
7    = note: `-D clippy::dbg-macro` implied by `-D warnings`
8 help: ensure to avoid having uses of it in version control
9    |
10 LL |     42;
11    |     ^^
12
13 error: aborting due to previous error
14