2017-12-06 02:27:47 -06:00
|
|
|
error: stability attributes may not be used outside of the standard library
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-43106-gating-of-stable.rs:7:1
|
2017-12-06 02:27:47 -06:00
|
|
|
|
|
2019-01-01 17:21:05 -06:00
|
|
|
LL | #![stable()]
|
|
|
|
| ^^^^^^^^^^^^
|
2017-12-06 02:27:47 -06:00
|
|
|
|
|
|
|
error: stability attributes may not be used outside of the standard library
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-43106-gating-of-stable.rs:10:1
|
2017-12-06 02:27:47 -06:00
|
|
|
|
|
2019-01-01 17:21:05 -06:00
|
|
|
LL | #[stable()]
|
|
|
|
| ^^^^^^^^^^^
|
2017-12-06 02:27:47 -06:00
|
|
|
|
|
|
|
error: stability attributes may not be used outside of the standard library
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-43106-gating-of-stable.rs:13:17
|
2017-12-06 02:27:47 -06:00
|
|
|
|
|
2019-01-01 17:21:05 -06:00
|
|
|
LL | mod inner { #![stable()] }
|
|
|
|
| ^^^^^^^^^^^^
|
2017-12-06 02:27:47 -06:00
|
|
|
|
|
|
|
error: stability attributes may not be used outside of the standard library
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-43106-gating-of-stable.rs:16:5
|
2017-12-06 02:27:47 -06:00
|
|
|
|
|
2019-01-01 17:21:05 -06:00
|
|
|
LL | #[stable()] fn f() { }
|
|
|
|
| ^^^^^^^^^^^
|
2017-12-06 02:27:47 -06:00
|
|
|
|
|
|
|
error: stability attributes may not be used outside of the standard library
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-43106-gating-of-stable.rs:19:5
|
2017-12-06 02:27:47 -06:00
|
|
|
|
|
2019-01-01 17:21:05 -06:00
|
|
|
LL | #[stable()] struct S;
|
|
|
|
| ^^^^^^^^^^^
|
2017-12-06 02:27:47 -06:00
|
|
|
|
|
|
|
error: stability attributes may not be used outside of the standard library
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-43106-gating-of-stable.rs:22:5
|
2017-12-06 02:27:47 -06:00
|
|
|
|
|
2019-01-01 17:21:05 -06:00
|
|
|
LL | #[stable()] type T = S;
|
|
|
|
| ^^^^^^^^^^^
|
2017-12-06 02:27:47 -06:00
|
|
|
|
|
|
|
error: stability attributes may not be used outside of the standard library
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-43106-gating-of-stable.rs:25:5
|
2017-12-06 02:27:47 -06:00
|
|
|
|
|
2019-01-01 17:21:05 -06:00
|
|
|
LL | #[stable()] impl S { }
|
|
|
|
| ^^^^^^^^^^^
|
2017-12-06 02:27:47 -06:00
|
|
|
|
2018-03-12 15:21:43 -05:00
|
|
|
error: aborting due to 7 previous errors
|
2017-12-06 02:27:47 -06:00
|
|
|
|