rust/src/test/ui/feature-gates/feature-gate-rustc-attrs-1.stderr

22 lines
785 B
Plaintext
Raw Normal View History

2019-04-10 16:40:12 -07:00
error[E0658]: the `#[rustc_variance]` attribute is just used for rustc unit tests and will never be stable
2018-12-25 08:56:47 -07:00
--> $DIR/feature-gate-rustc-attrs-1.rs:5:1
|
2019-03-09 15:03:44 +03:00
LL | #[rustc_variance]
| ^^^^^^^^^^^^^^^^^
|
2019-04-10 16:40:12 -07:00
= note: for more information, see tracking issue #29642
= help: add #![feature(rustc_attrs)] to the crate attributes to enable
2019-04-10 16:40:12 -07:00
error[E0658]: the `#[rustc_error]` attribute is just used for rustc unit tests and will never be stable
2018-12-25 08:56:47 -07:00
--> $DIR/feature-gate-rustc-attrs-1.rs:6:1
|
2019-03-09 15:03:44 +03:00
LL | #[rustc_error]
| ^^^^^^^^^^^^^^
|
2019-04-10 16:40:12 -07:00
= note: for more information, see tracking issue #29642
= help: add #![feature(rustc_attrs)] to the crate attributes to enable
2019-01-28 22:28:44 +01:00
error: aborting due to 2 previous errors
2019-01-28 22:28:44 +01:00
For more information about this error, try `rustc --explain E0658`.