Skip to content

Commit 257e766

Browse files
committed
Remove test of static Context
Context is no longer Sync so this doesn't work. error[E0277]: `*mut ()` cannot be shared between threads safely --> library/core/tests/task.rs:24:21 | 24 | static CONTEXT: Context<'static> = Context::from_waker(&WAKER); | ^^^^^^^^^^^^^^^^ `*mut ()` cannot be shared between threads safely | = help: within `Context<'static>`, the trait `Sync` is not implemented for `*mut ()` = note: required because it appears within the type `PhantomData<*mut ()>` = note: required because it appears within the type `Context<'static>` = note: shared static variables must have a type that implements `Sync`
1 parent fd59b62 commit 257e766

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

library/core/tests/task.rs

+2-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use core::task::{Context, Poll, RawWaker, RawWakerVTable, Waker};
1+
use core::task::{Poll, RawWaker, RawWakerVTable, Waker};
22

33
#[test]
44
fn poll_const() {
@@ -21,9 +21,5 @@ fn waker_const() {
2121

2222
static WAKER: Waker = unsafe { Waker::from_raw(VOID_WAKER) };
2323

24-
static CONTEXT: Context<'static> = Context::from_waker(&WAKER);
25-
26-
static WAKER_REF: &'static Waker = CONTEXT.waker();
27-
28-
WAKER_REF.wake_by_ref();
24+
WAKER.wake_by_ref();
2925
}

0 commit comments

Comments
 (0)