forked from rust-lang/rustlings
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: refactor move semantics 1-4 into tests
- Loading branch information
liv
committed
Sep 4, 2023
1 parent
c177507
commit 51e237d
Showing
5 changed files
with
27 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,26 @@ | ||
// move_semantics2.rs | ||
// | ||
// Expected output: | ||
// vec0 has length 3, with contents `[22, 44, 66]` | ||
// vec1 has length 4, with contents `[22, 44, 66, 88]` | ||
// Make the test pass by finding a way to keep both Vecs separate! | ||
// | ||
// Execute `rustlings hint move_semantics2` or use the `hint` watch subcommand | ||
// for a hint. | ||
|
||
// I AM NOT DONE | ||
|
||
#[test] | ||
fn main() { | ||
let vec0 = Vec::new(); | ||
let vec0 = vec![22, 44, 66]; | ||
|
||
let mut vec1 = fill_vec(vec0); | ||
|
||
println!("{} has length {}, with contents: `{:?}`", "vec0", vec0.len(), vec0); | ||
|
||
vec1.push(88); | ||
|
||
println!("{} has length {}, with contents `{:?}`", "vec1", vec1.len(), vec1); | ||
assert_eq!(vec0, vec![22, 44, 66]); | ||
assert_eq!(vec1, vec![22, 44, 66, 88]); | ||
} | ||
|
||
fn fill_vec(vec: Vec<i32>) -> Vec<i32> { | ||
let mut vec = vec; | ||
|
||
vec.push(22); | ||
vec.push(44); | ||
vec.push(66); | ||
vec.push(88); | ||
|
||
vec | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters