Move rest of test_derive_input to inline snapshots
diff --git a/tests/debug/mod.rs b/tests/debug/mod.rs
index 781149b..c118053 100644
--- a/tests/debug/mod.rs
+++ b/tests/debug/mod.rs
@@ -70,6 +70,15 @@
     }
 }
 
+impl<'a, T> Debug for Lite<&'a T>
+where
+    Lite<T>: Debug,
+{
+    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
+        Debug::fmt(Lite(&*self.value), formatter)
+    }
+}
+
 impl<T> Debug for Lite<Box<T>>
 where
     Lite<T>: Debug,