Move TokensOrDefault out of root
diff --git a/src/path.rs b/src/path.rs
index 2dafac8..e3ae9a7 100644
--- a/src/path.rs
+++ b/src/path.rs
@@ -458,9 +458,12 @@
 #[cfg(feature = "printing")]
 mod printing {
     use super::*;
+
     use proc_macro2::TokenStream;
     use quote::ToTokens;
 
+    use print::TokensOrDefault;
+
     impl ToTokens for Path {
         fn to_tokens(&self, tokens: &mut TokenStream) {
             self.leading_colon.to_tokens(tokens);