]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lint/lint-forbid-attr.rs
Merge commit '2bb3996244cf1b89878da9e39841e9f6bf061602' into sync_cg_clif-2022-12-14
[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 }