mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00
add more test cases for dbg_macro rule
This commit is contained in:
parent
268ff85326
commit
54d49af3ff
@ -1,7 +1,6 @@
|
|||||||
use crate::utils::span_help_and_lint;
|
use crate::utils::span_help_and_lint;
|
||||||
use rustc::lint::{EarlyContext, EarlyLintPass, LintArray, LintPass};
|
use rustc::lint::{EarlyContext, EarlyLintPass, LintArray, LintPass};
|
||||||
use rustc::{declare_tool_lint, lint_array};
|
use rustc::{declare_tool_lint, lint_array};
|
||||||
use rustc_errors::Applicability;
|
|
||||||
use syntax::ast;
|
use syntax::ast;
|
||||||
|
|
||||||
/// **What it does:** Checks for usage of dbg!() macro.
|
/// **What it does:** Checks for usage of dbg!() macro.
|
||||||
|
@ -1,5 +1,23 @@
|
|||||||
#![warn(clippy::dbg_macro)]
|
#![warn(clippy::dbg_macro)]
|
||||||
|
|
||||||
|
fn foo(n: u32) -> u32 {
|
||||||
|
if let Some(n) = dbg!(n.checked_sub(4)) {
|
||||||
|
n
|
||||||
|
} else {
|
||||||
|
n
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn factorial(n: u32) -> u32 {
|
||||||
|
if dbg!(n <= 1) {
|
||||||
|
dbg!(1)
|
||||||
|
} else {
|
||||||
|
dbg!(n * factorial(n - 1))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
dbg!(42);
|
dbg!(42);
|
||||||
|
dbg!(dbg!(dbg!(42)));
|
||||||
|
foo(3) + dbg!(factorial(4));
|
||||||
}
|
}
|
||||||
|
@ -1,14 +1,59 @@
|
|||||||
error: `dbg!` macro is intended as a debugging tool
|
error: `dbg!` macro is intended as a debugging tool
|
||||||
--> $DIR/dbg_macro.rs:4:5
|
--> $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
|
||||||
|
|
|
|
||||||
LL | dbg!(42);
|
LL | dbg!(42);
|
||||||
| ^^^^^^^^
|
| ^^^^^^^^
|
||||||
|
|
|
|
||||||
= note: `-D clippy::dbg-macro` implied by `-D warnings`
|
= help: ensure to avoid having uses of it in version control
|
||||||
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 | 42;
|
LL | dbg!(dbg!(dbg!(42)));
|
||||||
| ^^
|
| ^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
||||||
|
= help: ensure to avoid having uses of it in version control
|
||||||
|
|
||||||
error: aborting due to previous error
|
error: `dbg!` macro is intended as a debugging tool
|
||||||
|
--> $DIR/dbg_macro.rs:22:14
|
||||||
|
|
|
||||||
|
LL | foo(3) + dbg!(factorial(4));
|
||||||
|
| ^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
||||||
|
= help: ensure to avoid having uses of it in version control
|
||||||
|
|
||||||
|
error: aborting due to 7 previous errors
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user