]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-rustc-attrs-1.rs
f7ff3eb3ac9ff7bf2dac3680d4aef78337c68263
[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
8 fn main() {}