blob: aa0c0c1f5c2bad7a2c3c8e5538346937bd09c9f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
error[E0453]: allow(deprecated) overruled by outer forbid(deprecated)
--> $DIR/lint-forbid-attr.rs:13:9
|
LL | #![forbid(deprecated)]
| ---------- `forbid` level set here
LL |
LL | #[allow(deprecated)]
| ^^^^^^^^^^ overruled by previous forbid
error: aborting due to previous error
For more information about this error, try `rustc --explain E0453`.
|