|
| 1 | +error[E0658]: use of unstable library feature `on_broken_pipe` |
| 2 | + --> $DIR/feature-gate-on-broken-pipe.rs:3:13 |
| 3 | + | |
| 4 | +LL | let _ = std::io::OnBrokenPipe::BackwardsCompatible; |
| 5 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 6 | + | |
| 7 | + = note: see issue #150588 <https://github.com/rust-lang/rust/issues/150588> for more information |
| 8 | + = help: add `#![feature(on_broken_pipe)]` to the crate attributes to enable |
| 9 | + = note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date |
| 10 | + |
| 11 | +error[E0658]: use of unstable library feature `on_broken_pipe` |
| 12 | + --> $DIR/feature-gate-on-broken-pipe.rs:4:13 |
| 13 | + | |
| 14 | +LL | let _ = std::io::OnBrokenPipe::Kill; |
| 15 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 16 | + | |
| 17 | + = note: see issue #150588 <https://github.com/rust-lang/rust/issues/150588> for more information |
| 18 | + = help: add `#![feature(on_broken_pipe)]` to the crate attributes to enable |
| 19 | + = note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date |
| 20 | + |
| 21 | +error[E0658]: use of unstable library feature `on_broken_pipe` |
| 22 | + --> $DIR/feature-gate-on-broken-pipe.rs:5:13 |
| 23 | + | |
| 24 | +LL | let _ = std::io::OnBrokenPipe::Error; |
| 25 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 26 | + | |
| 27 | + = note: see issue #150588 <https://github.com/rust-lang/rust/issues/150588> for more information |
| 28 | + = help: add `#![feature(on_broken_pipe)]` to the crate attributes to enable |
| 29 | + = note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date |
| 30 | + |
| 31 | +error[E0658]: use of unstable library feature `on_broken_pipe` |
| 32 | + --> $DIR/feature-gate-on-broken-pipe.rs:6:13 |
| 33 | + | |
| 34 | +LL | let _ = std::io::OnBrokenPipe::Inherit; |
| 35 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 36 | + | |
| 37 | + = note: see issue #150588 <https://github.com/rust-lang/rust/issues/150588> for more information |
| 38 | + = help: add `#![feature(on_broken_pipe)]` to the crate attributes to enable |
| 39 | + = note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date |
| 40 | + |
| 41 | +error[E0658]: use of unstable library feature `on_broken_pipe` |
| 42 | + --> $DIR/feature-gate-on-broken-pipe.rs:7:13 |
| 43 | + | |
| 44 | +LL | let _ = std::io::on_broken_pipe(); |
| 45 | + | ^^^^^^^^^^^^^^^^^^^^^^^ |
| 46 | + | |
| 47 | + = note: see issue #150588 <https://github.com/rust-lang/rust/issues/150588> for more information |
| 48 | + = help: add `#![feature(on_broken_pipe)]` to the crate attributes to enable |
| 49 | + = note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date |
| 50 | + |
| 51 | +error: aborting due to 5 previous errors |
| 52 | + |
| 53 | +For more information about this error, try `rustc --explain E0658`. |
0 commit comments