David Tolnay 257e766c0c
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`
2023-01-02 10:33:23 -08:00
..
2022-11-08 17:39:40 +01:00
2022-10-08 11:48:53 +00:00
2022-12-28 09:18:43 -05:00
2022-10-29 09:56:20 +01:00
2022-12-28 09:18:43 -05:00
2022-11-06 17:21:21 -05:00
2022-09-27 19:23:52 +00:00
2022-11-20 11:19:11 -05:00
2022-08-20 12:49:20 -04:00
2022-12-30 14:00:42 +01:00
2023-01-02 10:33:23 -08:00