os-rust/src/test/ui/feature-gates/issue-43106-gating-of-stable.stderr

52 lines
1.6 KiB
Text
Raw Normal View History

2019-09-25 13:58:52 +02:00
error[E0734]: stability attributes may not be used outside of the standard library
2018-12-25 08:56:47 -07:00
--> $DIR/issue-43106-gating-of-stable.rs:7:1
|
LL | #![stable()]
| ^^^^^^^^^^^^
2019-09-25 13:58:52 +02:00
error[E0734]: stability attributes may not be used outside of the standard library
2018-12-25 08:56:47 -07:00
--> $DIR/issue-43106-gating-of-stable.rs:10:1
|
LL | #[stable()]
| ^^^^^^^^^^^
2019-09-25 13:58:52 +02:00
error[E0734]: stability attributes may not be used outside of the standard library
2018-12-25 08:56:47 -07:00
--> $DIR/issue-43106-gating-of-stable.rs:13:17
|
LL | mod inner { #![stable()] }
| ^^^^^^^^^^^^
2019-09-25 13:58:52 +02:00
error[E0734]: stability attributes may not be used outside of the standard library
2018-12-25 08:56:47 -07:00
--> $DIR/issue-43106-gating-of-stable.rs:16:5
|
LL | #[stable()] fn f() { }
| ^^^^^^^^^^^
2019-09-25 13:58:52 +02:00
error[E0734]: stability attributes may not be used outside of the standard library
2018-12-25 08:56:47 -07:00
--> $DIR/issue-43106-gating-of-stable.rs:19:5
|
LL | #[stable()] struct S;
| ^^^^^^^^^^^
2019-09-25 13:58:52 +02:00
error[E0734]: stability attributes may not be used outside of the standard library
2020-01-08 20:02:10 +03:00
--> $DIR/issue-43106-gating-of-stable.rs:19:5
|
LL | #[stable()] struct S;
| ^^^^^^^^^^^
error[E0734]: stability attributes may not be used outside of the standard library
--> $DIR/issue-43106-gating-of-stable.rs:23:5
|
LL | #[stable()] type T = S;
| ^^^^^^^^^^^
2019-09-25 13:58:52 +02:00
error[E0734]: stability attributes may not be used outside of the standard library
2020-01-08 20:02:10 +03:00
--> $DIR/issue-43106-gating-of-stable.rs:26:5
|
LL | #[stable()] impl S { }
| ^^^^^^^^^^^
2020-01-08 20:02:10 +03:00
error: aborting due to 8 previous errors
2019-09-25 13:58:52 +02:00
For more information about this error, try `rustc --explain E0734`.