Skip to content

Commit 8e3595f

Browse files
committed
prints
1 parent f2f8a36 commit 8e3595f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clippy_lints/src/macro_use.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ impl ImportData {
2525
pub fn new(name: String, span: Span, ecx: &EarlyContext<'_>) -> Self {
2626
let path = ecx.sess.source_map().span_to_filename(span);
2727
let path = ecx.sess.source_map().span_to_unmapped_path(span);
28-
println!("{:?} {:?}", name, path);
28+
println!("NEW {:?} {:?}", name, path);
2929
Self { name: name.to_string(), path: path.to_string(), }
3030
}
3131
}
@@ -56,7 +56,7 @@ pub struct MacroUseImport {
5656

5757
impl MacroUseImport {
5858
fn import_path_mac(&self, name: &str) -> String {
59-
println!("{:?}", name);
59+
println!("END {:?}", name);
6060
String::default()
6161
}
6262
}

0 commit comments

Comments
 (0)