Add issue reference

This commit is contained in:
Jonas Schievink 2020-03-17 22:19:11 +01:00
parent 78274bc17c
commit db0126a7c2

View File

@ -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.
///