]> git.lizzy.rs Git - rust.git/blob - tests/ui/stability-attribute/stability-attribute-trait-impl.stderr
Rollup merge of #107740 - oli-obk:lock_tcx, r=petrochenkov
[rust.git] / tests / ui / stability-attribute / stability-attribute-trait-impl.stderr
1 error: an `#[unstable]` annotation here has no effect
2   --> $DIR/stability-attribute-trait-impl.rs:32:1
3    |
4 LL | #[unstable(feature = "j", issue = "none")]
5    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6    |
7    = note: see issue #55436 <https://github.com/rust-lang/rust/issues/55436> for more information
8    = note: `#[deny(ineffective_unstable_trait_impl)]` on by default
9
10 error: an `#[unstable]` annotation here has no effect
11   --> $DIR/stability-attribute-trait-impl.rs:36:1
12    |
13 LL | #[unstable(feature = "k", issue = "none")]
14    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
15    |
16    = note: see issue #55436 <https://github.com/rust-lang/rust/issues/55436> for more information
17
18 error: module has missing stability attribute
19   --> $DIR/stability-attribute-trait-impl.rs:1:1
20    |
21 LL | / #![feature(staged_api, never_type, c_unwind)]
22 LL | |
23 LL | |
24 LL | | #[stable(feature = "a", since = "1")]
25 ...  |
26 LL | |
27 LL | | fn main() {}
28    | |____________^
29
30 error: aborting due to 3 previous errors
31