2017-12-10 13:47:55 -06:00
|
|
|
error[E0453]: allow(deprecated) overruled by outer forbid(deprecated)
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/lint-forbid-attr.rs:3:9
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | #![forbid(deprecated)]
|
2017-12-10 13:47:55 -06:00
|
|
|
| ---------- `forbid` level set here
|
2018-02-24 17:01:39 -06:00
|
|
|
LL |
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | #[allow(deprecated)]
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^^^^^^^^^^ overruled by previous forbid
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about this error, try `rustc --explain E0453`.
|