aboutsummaryrefslogtreecommitdiff
path: root/tests/join.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/join.rs')
-rw-r--r--tests/join.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/join.rs b/tests/join.rs
index 17312a4..2ac7b8d 100644
--- a/tests/join.rs
+++ b/tests/join.rs
@@ -82,7 +82,7 @@ macro_rules! schedule {
let guard = Guard(Box::new(0));
move |runnable: Runnable| {
- &guard;
+ let _ = &guard;
runnable.schedule();
$sched.fetch_add(1, Ordering::SeqCst);
}