2017-12-10 13:47:55 -06:00
|
|
|
error[E0453]: allow(deprecated) overruled by outer forbid(deprecated)
|
2017-12-10 14:29:24 -06:00
|
|
|
--> $DIR/lint-forbid-attr.rs:13:9
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
|
|
|
11 | #![forbid(deprecated)]
|
|
|
|
| ---------- `forbid` level set here
|
2017-12-10 14:29:24 -06:00
|
|
|
12 |
|
|
|
|
13 | #[allow(deprecated)]
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^^^^^^^^^^ overruled by previous forbid
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-02-19 14:40:25 -06:00
|
|
|
If you want more information on this error, try using "rustc --explain E0453"
|