]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lint/lint-forbid-attr.rs
Add 'src/tools/rustfmt/' from commit '7872306edf2e11a69aaffb9434088fd66b46a863'
[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 //~| ERROR allow(deprecated) incompatible
7 fn main() {
8 }