about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/items.rs1
-rw-r--r--src/lib.rs1
2 files changed, 1 insertions, 1 deletions
diff --git a/src/items.rs b/src/items.rs
index eb11604b277..c8ea104e9d6 100644
--- a/src/items.rs
+++ b/src/items.rs
@@ -1994,6 +1994,7 @@ fn rewrite_static(
     static_parts: &StaticParts<'_>,
     offset: Indent,
 ) -> Option<String> {
+    println!("rewriting static");
     let colon = colon_spaces(context.config);
     let mut prefix = format!(
         "{}{}{}{} {}{}{}",
diff --git a/src/lib.rs b/src/lib.rs
index ff2b14af078..2ef1698ead0 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -3,7 +3,6 @@
 #![warn(unreachable_pub)]
 #![recursion_limit = "256"]
 #![allow(clippy::match_like_matches_macro)]
-#![allow(unreachable_pub)]
 
 #[macro_use]
 extern crate tracing;