about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorFelix Rabe <felix@rabe.io>2018-08-01 09:42:46 +0200
committerGitHub <noreply@github.com>2018-08-01 09:42:46 +0200
commitc3fdd19e43e0e0ecb7d12e15b0892dbe6139798d (patch)
tree025127c6690640816c58c8c2352c26cd9b3882a9 /src/libstd
parente94df4acb4c3f42fdc224a7164b63a99240add1e (diff)
downloadrust-c3fdd19e43e0e0ecb7d12e15b0892dbe6139798d.tar.gz
rust-c3fdd19e43e0e0ecb7d12e15b0892dbe6139798d.zip
Document #39364 (WIP)
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/sync/mpsc/mod.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/libstd/sync/mpsc/mod.rs b/src/libstd/sync/mpsc/mod.rs
index 02a96b01cca..fc0e37f150e 100644
--- a/src/libstd/sync/mpsc/mod.rs
+++ b/src/libstd/sync/mpsc/mod.rs
@@ -1247,6 +1247,12 @@ impl<T> Receiver<T> {
     /// [`SyncSender`]: struct.SyncSender.html
     /// [`Err`]: ../../../std/result/enum.Result.html#variant.Err
     ///
+    /// # Panics
+    ///
+    /// Panics due to a known issue ([`#39364`][]).
+    ///
+    /// [`#39364`]: https://github.com/rust-lang/rust/issues/39364
+    ///
     /// # Examples
     ///
     /// Successfully receiving value before encountering timeout: