]> git.lizzy.rs Git - rust.git/blob - src/test/ui/stability-attribute/stability-attribute-non-staged-force-unstable.stderr
Rollup merge of #94577 - RalfJung:simd-miri, r=scottmcm
[rust.git] / src / test / ui / stability-attribute / stability-attribute-non-staged-force-unstable.stderr
1 error[E0734]: stability attributes may not be used outside of the standard library
2   --> $DIR/stability-attribute-non-staged-force-unstable.rs:3:1
3    |
4 LL | #[unstable()]
5    | ^^^^^^^^^^^^^
6
7 error[E0734]: stability attributes may not be used outside of the standard library
8   --> $DIR/stability-attribute-non-staged-force-unstable.rs:4:1
9    |
10 LL | #[stable()]
11    | ^^^^^^^^^^^
12
13 error[E0734]: stability attributes may not be used outside of the standard library
14   --> $DIR/stability-attribute-non-staged-force-unstable.rs:5:1
15    |
16 LL | #[rustc_deprecated()]
17    | ^^^^^^^^^^^^^^^^^^^^^
18
19 error[E0542]: missing 'since'
20   --> $DIR/stability-attribute-non-staged-force-unstable.rs:5:1
21    |
22 LL | #[rustc_deprecated()]
23    | ^^^^^^^^^^^^^^^^^^^^^
24
25 error: aborting due to 4 previous errors
26
27 Some errors have detailed explanations: E0542, E0734.
28 For more information about an error, try `rustc --explain E0542`.