diff options
| author | liv <mokou@fastmail.com> | 2023-09-06 09:31:46 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-06 09:31:46 +0200 |
| commit | 4d04aad8902262d73d05b066ef0b8ffcd4fb634d (patch) | |
| tree | 31c90ca2ff727980780e5c29882ca17c53109f16 /exercises/move_semantics/move_semantics5.rs | |
| parent | 847b57423f2a2500b666ec0085cbd897b7b7139f (diff) | |
| parent | 193b600382ead22a24d2c26ca3a9117e7ad18be8 (diff) | |
Merge pull request #1641 from mo8it/move-semantics5-test
Convert exercises with assertions to tests
Diffstat (limited to 'exercises/move_semantics/move_semantics5.rs')
| -rw-r--r-- | exercises/move_semantics/move_semantics5.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/exercises/move_semantics/move_semantics5.rs b/exercises/move_semantics/move_semantics5.rs index 68db09e..267bdcc 100644 --- a/exercises/move_semantics/move_semantics5.rs +++ b/exercises/move_semantics/move_semantics5.rs @@ -8,6 +8,7 @@ // I AM NOT DONE +#[test] fn main() { let mut x = 100; let y = &mut x; |
