diff options
| author | Nahor <nahor.j+github@gmail.com> | 2024-07-04 11:58:09 -0700 |
|---|---|---|
| committer | Nahor <nahor.j+github@gmail.com> | 2024-07-04 11:58:09 -0700 |
| commit | 4cd0ccce836511c7e7fa2d7f34ab01a10ce37a7d (patch) | |
| tree | 6772a5bacace746ebccd56402666ad09d843f38e /exercises | |
| parent | b8fcd112866522ca574fd8a0d28562a9ffd3e10d (diff) | |
Fix misleading test name
Diffstat (limited to 'exercises')
| -rw-r--r-- | exercises/06_move_semantics/move_semantics4.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/06_move_semantics/move_semantics4.rs b/exercises/06_move_semantics/move_semantics4.rs index c225f3b..83a0344 100644 --- a/exercises/06_move_semantics/move_semantics4.rs +++ b/exercises/06_move_semantics/move_semantics4.rs @@ -7,7 +7,7 @@ mod tests { // TODO: Fix the compiler errors only by reordering the lines in the test. // Don't add, change or remove any line. #[test] - fn move_semantics5() { + fn move_semantics4() { let mut x = 100; let y = &mut x; let z = &mut x; |
