]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lint/lint-forbid-attr.rs
Merge commit '7b73b60faca71d01d900e49831fcb84553e93019' into sync-rustfmt
[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 }