some iterator tuning
[rust-101.git] / workspace / src / part08.rs
index 61f665f26cb8c5a4af203031536e2367c2d715c1..1fac1508d7326e5cbbbaadefcf74b04bd5ffe4ee 100644 (file)
@@ -76,7 +76,9 @@ impl<'a, 'b> ops::Add<&'a BigInt> for &'b BigInt {
 // Rust calls a bunch of definitions that are grouped together a *module*. You can put the tests in a submodule as follows.
 #[cfg(test)]
 mod tests {
-    #[test]
+    use part05::BigInt;
+
+    /*#[test]*/
     fn test_add() {
         let b1 = BigInt::new(1 << 32);
         let b2 = BigInt::from_vec(vec![0, 1]);