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

13 lines
382 B
Plaintext
Raw Normal View History

error[E0453]: allow(deprecated) overruled by outer forbid(deprecated)
--> $DIR/lint-forbid-attr.rs:13:9
|
2018-02-23 03:42:32 +03:00
LL | #![forbid(deprecated)]
| ---------- `forbid` level set here
2018-02-25 02:01:39 +03:00
LL |
2018-02-23 03:42:32 +03:00
LL | #[allow(deprecated)]
| ^^^^^^^^^^ overruled by previous forbid
error: aborting due to previous error
2018-03-03 15:59:40 +01:00
For more information about this error, try `rustc --explain E0453`.