We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8dc13d commit 67ab53dCopy full SHA for 67ab53d
library/core/tests/future.rs
@@ -78,7 +78,7 @@ mod test_join_function_like_value_arg_semantics {
78
fn _join_does_not_unnecessarily_move_mentioned_bindings() {
79
let not_copy = vec![()];
80
let _ = join!(async_fn(¬_copy)); // should not move `not_copy`
81
- let _ = not_copy; // OK
+ let _ = ¬_copy; // OK
82
}
83
84
#[test]
0 commit comments