|
| 1 | +error: multiple reasons provided for unstability |
| 2 | + --> $DIR/multiple-stability-attribute-sanity.rs:8:1 |
| 3 | + | |
| 4 | +LL | #[unstable(feature = "b", issue = "none", reason = "reason 2")] |
| 5 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 6 | + |
| 7 | +error: multiple reasons provided for unstability |
| 8 | + --> $DIR/multiple-stability-attribute-sanity.rs:12:1 |
| 9 | + | |
| 10 | +LL | #[unstable(feature = "b", issue = "none", reason = "reason 2")] |
| 11 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 12 | + |
| 13 | +error: multiple reasons provided for unstability |
| 14 | + --> $DIR/multiple-stability-attribute-sanity.rs:13:1 |
| 15 | + | |
| 16 | +LL | #[unstable(feature = "c", issue = "none", reason = "reason 3")] |
| 17 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 18 | + |
| 19 | +error: `soft` must be present on either none or all of an item's `unstable` attributes |
| 20 | + --> $DIR/multiple-stability-attribute-sanity.rs:16:1 |
| 21 | + | |
| 22 | +LL | #[unstable(feature = "a", issue = "none")] |
| 23 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 24 | +LL | #[unstable(feature = "b", issue = "none", soft)] |
| 25 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 26 | + |
| 27 | +error: `soft` must be present on either none or all of an item's `unstable` attributes |
| 28 | + --> $DIR/multiple-stability-attribute-sanity.rs:20:1 |
| 29 | + | |
| 30 | +LL | #[unstable(feature = "a", issue = "none", soft)] |
| 31 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 32 | +LL | #[unstable(feature = "b", issue = "none")] |
| 33 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 34 | + |
| 35 | +error: aborting due to 5 previous errors |
| 36 | + |
0 commit comments