]> git.lizzy.rs Git - rust.git/blob - tests/ui/feature-gates/issue-43106-gating-of-unstable.stderr
Rollup merge of #106793 - Mark-Simulacrum:normalize-test, r=compiler-errors
[rust.git] / tests / ui / feature-gates / issue-43106-gating-of-unstable.stderr
1 error[E0734]: stability attributes may not be used outside of the standard library
2   --> $DIR/issue-43106-gating-of-unstable.rs:14:9
3    |
4 LL |         #![unstable()]
5    |         ^^^^^^^^^^^^^^
6
7 error[E0734]: stability attributes may not be used outside of the standard library
8   --> $DIR/issue-43106-gating-of-unstable.rs:18:5
9    |
10 LL |     #[unstable()]
11    |     ^^^^^^^^^^^^^
12
13 error[E0734]: stability attributes may not be used outside of the standard library
14   --> $DIR/issue-43106-gating-of-unstable.rs:22:5
15    |
16 LL |     #[unstable()]
17    |     ^^^^^^^^^^^^^
18
19 error[E0734]: stability attributes may not be used outside of the standard library
20   --> $DIR/issue-43106-gating-of-unstable.rs:26:5
21    |
22 LL |     #[unstable()]
23    |     ^^^^^^^^^^^^^
24
25 error[E0734]: stability attributes may not be used outside of the standard library
26   --> $DIR/issue-43106-gating-of-unstable.rs:30:5
27    |
28 LL |     #[unstable()]
29    |     ^^^^^^^^^^^^^
30
31 error[E0734]: stability attributes may not be used outside of the standard library
32   --> $DIR/issue-43106-gating-of-unstable.rs:10:1
33    |
34 LL | #[unstable()]
35    | ^^^^^^^^^^^^^
36
37 error[E0734]: stability attributes may not be used outside of the standard library
38   --> $DIR/issue-43106-gating-of-unstable.rs:7:1
39    |
40 LL | #![unstable()]
41    | ^^^^^^^^^^^^^^
42
43 error: aborting due to 7 previous errors
44
45 For more information about this error, try `rustc --explain E0734`.