projects
/
rust-101.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
part11: first version
[rust-101.git]
/
workspace
/
src
/
part08.rs
diff --git
a/workspace/src/part08.rs
b/workspace/src/part08.rs
index 61f665f26cb8c5a4af203031536e2367c2d715c1..1fac1508d7326e5cbbbaadefcf74b04bd5ffe4ee 100644
(file)
--- a/
workspace/src/part08.rs
+++ b/
workspace/src/part08.rs
@@
-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 {
// 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]);
fn test_add() {
let b1 = BigInt::new(1 << 32);
let b2 = BigInt::from_vec(vec![0, 1]);