Browse Source

Remove a redundant type annotation in a test

Ian Goldberg 6 months ago
parent
commit
f9759d4f0a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib.rs

+ 1 - 1
src/lib.rs

@@ -104,7 +104,7 @@ mod tests {
 
 
         println!("{:#?}", Lox::attrs());
         println!("{:#?}", Lox::attrs());
 
 
-        let mut L: Lox = Lox::default();
+        let mut L = Lox::default();
 
 
         println!("{:#?}", L);
         println!("{:#?}", L);