diff options
| author | Felix Rabe <felix@rabe.io> | 2018-08-01 09:42:46 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-01 09:42:46 +0200 |
| commit | c3fdd19e43e0e0ecb7d12e15b0892dbe6139798d (patch) | |
| tree | 025127c6690640816c58c8c2352c26cd9b3882a9 /src/libstd | |
| parent | e94df4acb4c3f42fdc224a7164b63a99240add1e (diff) | |
| download | rust-c3fdd19e43e0e0ecb7d12e15b0892dbe6139798d.tar.gz rust-c3fdd19e43e0e0ecb7d12e15b0892dbe6139798d.zip | |
Document #39364 (WIP)
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/sync/mpsc/mod.rs | 6 |
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: |
