]> git.lizzy.rs Git - rust.git/blob - tests/ui/feature-gates/feature-gate-rustc-attrs-1.rs
Rollup merge of #106783 - WaffleLapkin:break-my-ident, r=wesleywiser
[rust.git] / tests / ui / feature-gates / feature-gate-rustc-attrs-1.rs
1 // Test that `#[rustc_*]` attributes are gated by `rustc_attrs` feature gate.
2
3 #[rustc_variance] //~ ERROR the `#[rustc_variance]` attribute is just used for rustc unit tests and will never be stable
4 #[rustc_error] //~ ERROR the `#[rustc_error]` attribute is just used for rustc unit tests and will never be stable
5 #[rustc_nonnull_optimization_guaranteed] //~ ERROR the `#[rustc_nonnull_optimization_guaranteed]` attribute is just used to enable niche optimizations in libcore and libstd and will never be stable
6
7 fn main() {}