mirror of
https://github.com/notohh/rustlings.git
synced 2025-09-18 19:53:15 -04:00
move_semantics4: Avoid using the dereference operator
This commit is contained in:
parent
59d6b852af
commit
d7024d80ce
2 changed files with 9 additions and 9 deletions
exercises/06_move_semantics
|
@ -8,11 +8,11 @@ mod tests {
|
|||
// Don't add, change or remove any line.
|
||||
#[test]
|
||||
fn move_semantics4() {
|
||||
let mut x = 100;
|
||||
let mut x = Vec::new();
|
||||
let y = &mut x;
|
||||
let z = &mut x;
|
||||
*y += 100;
|
||||
*z += 1000;
|
||||
assert_eq!(x, 1200);
|
||||
y.push(42);
|
||||
z.push(13);
|
||||
assert_eq!(x, [42, 13]);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue