From db0126a7c251f4cca39ad4c50527e88c97190992 Mon Sep 17 00:00:00 2001 From: Jonas Schievink Date: Tue, 17 Mar 2020 22:19:11 +0100 Subject: [PATCH] Add issue reference --- src/libcore/future/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/future/mod.rs b/src/libcore/future/mod.rs index 6ee8479b347..8dfda7a4a32 100644 --- a/src/libcore/future/mod.rs +++ b/src/libcore/future/mod.rs @@ -17,7 +17,7 @@ /// This type is needed because: /// /// a) Generators cannot implement `for<'a, 'b> Generator<&'a mut Context<'b>>`, so we need to pass -/// a raw pointer. +/// a raw pointer (see https://github.com/rust-lang/rust/issues/68923). /// b) Raw pointers and `NonNull` aren't `Send` or `Sync`, so that would make every single future /// non-Send/Sync as well, and we don't want that. /// -- 2.44.0