]> git.lizzy.rs Git - rust.git/blob - tests/ui/lint/lint-forbid-attr.rs
Rollup merge of #106648 - Nilstrieb:poly-cleanup, r=compiler-errors
[rust.git] / tests / 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 }