diff options
| author | liv <mokou@fastmail.com> | 2023-04-05 13:10:57 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-05 13:10:57 +0000 |
| commit | 087e076ec0c18beef20948732e25d6184c586ba2 (patch) | |
| tree | ecfc2e6c3b04d6633636a34b4768fe91542eb184 /exercises/move_semantics | |
| parent | b39b819725d3fb18ba265f41ad0bf9cda8c9cc5b (diff) | |
| parent | fef8314d3d45aa1ec3655cd6e9a52f877da51c23 (diff) | |
Merge pull request #1384 from stornquist/patch-1
fix(move_semantics2): add expected output comment
Diffstat (limited to 'exercises/move_semantics')
| -rw-r--r-- | exercises/move_semantics/move_semantics2.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/exercises/move_semantics/move_semantics2.rs b/exercises/move_semantics/move_semantics2.rs index 6487085..68dbf02 100644 --- a/exercises/move_semantics/move_semantics2.rs +++ b/exercises/move_semantics/move_semantics2.rs @@ -2,6 +2,10 @@ // Make me compile without changing line 13 or moving line 10! // Execute `rustlings hint move_semantics2` or use the `hint` watch subcommand for a hint. +// Expected output: +// vec0 has length 3 content `[22, 44, 66]` +// vec1 has length 4 content `[22, 44, 66, 88]` + // I AM NOT DONE fn main() { |
