Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ignore doc tests which "Broken MIR" ICE occurred #1658

Merged
merged 1 commit into from Jun 6, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 6 additions & 3 deletions futures-util/src/stream/mod.rs
Expand Up @@ -407,7 +407,8 @@ pub trait StreamExt: Stream {
///
/// # Examples
///
/// ```
// TODO: https://github.com/rust-lang-nursery/futures-rs/issues/1657
/// ```ignore
/// #![feature(async_await)]
/// # futures::executor::block_on(async {
/// use futures::channel::mpsc;
Expand Down Expand Up @@ -444,7 +445,8 @@ pub trait StreamExt: Stream {
///
/// # Examples
///
/// ```
// TODO: https://github.com/rust-lang-nursery/futures-rs/issues/1657
/// ```ignore
/// #![feature(async_await)]
/// # futures::executor::block_on(async {
/// use futures::channel::mpsc;
Expand Down Expand Up @@ -507,7 +509,8 @@ pub trait StreamExt: Stream {
///
/// # Examples
///
/// ```
// TODO: https://github.com/rust-lang-nursery/futures-rs/issues/1657
/// ```ignore
/// #![feature(async_await)]
/// # futures::executor::block_on(async {
/// use futures::channel::mpsc;
Expand Down
6 changes: 4 additions & 2 deletions futures-util/src/try_stream/mod.rs
Expand Up @@ -449,7 +449,8 @@ pub trait TryStreamExt: TryStream {
///
/// # Examples
///
/// ```
// TODO: https://github.com/rust-lang-nursery/futures-rs/issues/1657
/// ```ignore
/// #![feature(async_await)]
/// # futures::executor::block_on(async {
/// use futures::channel::mpsc;
Expand Down Expand Up @@ -607,7 +608,8 @@ pub trait TryStreamExt: TryStream {
///
/// # Examples
///
/// ```
// TODO: https://github.com/rust-lang-nursery/futures-rs/issues/1657
/// ```ignore
/// #![feature(async_await)]
/// # futures::executor::block_on(async {
/// use futures::channel::mpsc;
Expand Down