summaryrefslogtreecommitdiffstats
path: root/src/test/ui/feature-gates/feature-gate-rustc-attrs-1.rs
blob: 667bc9f8ddf182905e5a8f9f725cc4f24f39f73c (plain)
1
2
3
4
5
6
7
// Test that `#[rustc_*]` attributes are gated by `rustc_attrs` feature gate.

#[rustc_variance] //~ ERROR the `#[rustc_variance]` attribute is just used for rustc unit tests and will never be stable
#[rustc_error] //~ ERROR the `#[rustc_error]` attribute is just used for rustc unit tests and will never be stable
#[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

fn main() {}