diff options
| author | Josh Triplett <josh@joshtriplett.org> | 2021-12-10 05:07:52 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-10 05:07:52 -0800 |
| commit | 67ab53daee2fd42a8ae643225acfc7c7c074e0f7 (patch) | |
| tree | 9c7372810c29ddb66deb54fc9a7f95b491e52d21 | |
| parent | f8dc13db43d61bba73f68cfcccfe4771864f6d78 (diff) | |
| download | rust-67ab53daee2fd42a8ae643225acfc7c7c074e0f7.tar.gz rust-67ab53daee2fd42a8ae643225acfc7c7c074e0f7.zip | |
Update library/core/tests/future.rs
Co-authored-by: Daniel Henry-Mantilla <daniel.henry.mantilla@gmail.com>
| -rw-r--r-- | library/core/tests/future.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/tests/future.rs b/library/core/tests/future.rs index 8f4a991ed2d..e8b83b5cbc2 100644 --- a/library/core/tests/future.rs +++ b/library/core/tests/future.rs @@ -78,7 +78,7 @@ mod test_join_function_like_value_arg_semantics { fn _join_does_not_unnecessarily_move_mentioned_bindings() { let not_copy = vec![()]; let _ = join!(async_fn(¬_copy)); // should not move `not_copy` - let _ = not_copy; // OK + let _ = ¬_copy; // OK } #[test] |
