Skip to content

Commit 9fc93dd

Browse files
committed
WIP: comment-out dbg!(bounds)
1 parent cfca36d commit 9fc93dd

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

clippy_lints/src/needless_path_new.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,9 @@ fn check_arguments<'tcx>(
9494
{
9595
let parameters = fn_sig.inputs();
9696

97-
let bounds = tcx.param_env(def_id).caller_bounds();
98-
dbg!(bounds);
97+
let _bounds = tcx.param_env(def_id).caller_bounds();
98+
// dbg!(bounds);
99+
99100
let generic_args_we_can_change: Vec<_> = generic_args
100101
.iter()
101102
.filter_map(|g| g.as_type())

0 commit comments

Comments
 (0)