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