rust/src/test/ui/lint/lint-forbid-attr.stderr

13 lines
381 B
Plaintext
Raw Normal View History

error[E0453]: allow(deprecated) overruled by outer forbid(deprecated)
2018-12-25 09:56:47 -06:00
--> $DIR/lint-forbid-attr.rs:3:9
|
2018-02-22 18:42:32 -06:00
LL | #![forbid(deprecated)]
| ---------- `forbid` level set here
2018-02-24 17:01:39 -06:00
LL |
2018-02-22 18:42:32 -06:00
LL | #[allow(deprecated)]
| ^^^^^^^^^^ 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`.