mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 07:04:18 +00:00
12 lines
292 B
Rust
12 lines
292 B
Rust
//@no-rustfix
|
|
#![warn(clippy::dbg_macro)]
|
|
|
|
#[path = "auxiliary/submodule.rs"]
|
|
mod submodule;
|
|
|
|
fn main() {
|
|
dbg!(dbg!(dbg!(42)));
|
|
//~^ ERROR: the `dbg!` macro is intended as a debugging tool
|
|
dbg!(1, 2, dbg!(3, 4));
|
|
//~^ ERROR: the `dbg!` macro is intended as a debugging tool
|
|
}
|