diff options
| author | Mo <76752051+mo8it@users.noreply.github.com> | 2024-07-04 21:14:02 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-04 21:14:02 +0200 |
| commit | 47f8199a996c098cfd64f5afa08284a588d2b874 (patch) | |
| tree | 514ffb097f16ea68ee04e6a454a2a9a4fe991502 | |
| parent | 4bf0ddc0e1b6213b9ddd7b804c19326774cdbf61 (diff) | |
| parent | 4cd0ccce836511c7e7fa2d7f34ab01a10ce37a7d (diff) | |
Merge pull request #2017 from Nahor/main
Fix misleading test name
| -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; |
