]> git.proxmox.com Git - rustc.git/blob - src/test/ui/lint/lint-forbid-attr.stderr
New upstream version 1.33.0+dfsg1
[rustc.git] / src / test / ui / lint / lint-forbid-attr.stderr
1 error[E0453]: allow(deprecated) overruled by outer forbid(deprecated)
2 --> $DIR/lint-forbid-attr.rs:3:9
3 |
4 LL | #![forbid(deprecated)]
5 | ---------- `forbid` level set here
6 LL |
7 LL | #[allow(deprecated)]
8 | ^^^^^^^^^^ overruled by previous forbid
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0453`.