]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lint/lint-forbid-attr.rs
Sync rust-lang/portable-simd@5f49d4c8435a25d804b2f375e949cb25479f5be9
[rust.git] / src / test / ui / lint / lint-forbid-attr.rs
1 #![forbid(deprecated)]
2
3 #[allow(deprecated)]
4 //~^ ERROR allow(deprecated) incompatible
5 //~| ERROR allow(deprecated) incompatible
6 fn main() {
7 }