]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-rustc-attrs-1.rs
Merge commit 'd556c56f792756dd7cfec742b9f2e07612dc10f4' into sync_cg_clif-2021-02-01
[rust.git] / src / test / ui / feature-gates / feature-gate-rustc-attrs-1.rs
1 // ignore-tidy-linelength
2
3 // Test that `#[rustc_*]` attributes are gated by `rustc_attrs` feature gate.
4
5 #[rustc_variance] //~ ERROR the `#[rustc_variance]` attribute is just used for rustc unit tests and will never be stable
6 #[rustc_error] //~ ERROR the `#[rustc_error]` attribute is just used for rustc unit tests and will never be stable
7 #[rustc_nonnull_optimization_guaranteed] //~ ERROR the `#[rustc_nonnull_optimization_guaranteed]` attribute is just used to enable niche optimizations in libcore and will never be stable
8
9 fn main() {}