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

13 lines
392 B
Plaintext
Raw Normal View History

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